diff --git a/src/SDKs/DataLake.Analytics/DataLakeAnalytics.Tests/ScenarioTests/JobOperationTests.cs b/src/SDKs/DataLake.Analytics/DataLakeAnalytics.Tests/ScenarioTests/JobOperationTests.cs index 6af90b7b42a0..d30ace9165d4 100644 --- a/src/SDKs/DataLake.Analytics/DataLakeAnalytics.Tests/ScenarioTests/JobOperationTests.cs +++ b/src/SDKs/DataLake.Analytics/DataLakeAnalytics.Tests/ScenarioTests/JobOperationTests.cs @@ -44,12 +44,12 @@ public void SubmitGetListCancelTest() var pipelineName = TestUtilities.GenerateName("jobPipeline"); var pipelineUri = string.Format("https://{0}.contoso.com/myJob", TestUtilities.GenerateName("pipelineuri")); // Submit a job to the account - var jobToSubmit = new JobInformation + var jobToSubmit = new CreateJobParameters { Name = "azure sdk data lake analytics job", DegreeOfParallelism = 2, Type = JobType.USql, - Properties = new USqlJobProperties + Properties = new CreateUSqlJobProperties { Script = "DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;" }, @@ -146,13 +146,24 @@ public void SubmitGetListCancelTest() Assert.Equal(1, listRecurrence.Count()); Assert.True(listRecurrence.Any(recurrence => recurrence.RecurrenceId == recurrenceId)); + // Build a job to the account + var jobToBuild = new BuildJobParameters + { + Name = "azure sdk data lake analytics job", + Type = JobType.USql, + Properties = new CreateUSqlJobProperties + { + Script = "DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;" + } + }; + // Just compile the job, which requires a jobId in the job object - var compileResponse = clientToUse.Job.Build(commonData.SecondDataLakeAnalyticsAccountName, jobToSubmit); + var compileResponse = clientToUse.Job.Build(commonData.SecondDataLakeAnalyticsAccountName, jobToBuild); Assert.NotNull(compileResponse); // now compile a broken job and verify diagnostics report an error jobToSubmit.Properties.Script = "DROP DATABASE IF EXIST FOO; CREATE DATABASE FOO;"; - compileResponse = clientToUse.Job.Build(commonData.SecondDataLakeAnalyticsAccountName, jobToSubmit); + compileResponse = clientToUse.Job.Build(commonData.SecondDataLakeAnalyticsAccountName, jobToBuild); Assert.NotNull(compileResponse); Assert.Equal(1, ((USqlJobProperties)compileResponse.Properties).Diagnostics.Count); diff --git a/src/SDKs/DataLake.Analytics/DataLakeAnalytics.Tests/TestHelpers/DataLakeAnalyticsManagementHelper.cs b/src/SDKs/DataLake.Analytics/DataLakeAnalytics.Tests/TestHelpers/DataLakeAnalyticsManagementHelper.cs index 3fd7ee4da93b..37fa89b6161d 100644 --- a/src/SDKs/DataLake.Analytics/DataLakeAnalytics.Tests/TestHelpers/DataLakeAnalyticsManagementHelper.cs +++ b/src/SDKs/DataLake.Analytics/DataLakeAnalytics.Tests/TestHelpers/DataLakeAnalyticsManagementHelper.cs @@ -318,12 +318,12 @@ CREATE VIEW {0}.dbo.{3} internal Guid RunJobToCompletion(DataLakeAnalyticsJobManagementClient jobClient, string dataLakeAnalyticsAccountName, Guid jobIdToUse, string scriptToRun) { - var createOrBuildParams = new JobInformation + var createOrBuildParams = new CreateJobParameters { Name = TestUtilities.GenerateName("testjob1"), Type = JobType.USql, DegreeOfParallelism = 2, - Properties = new USqlJobProperties + Properties = new CreateUSqlJobProperties { // Type = JobType.USql, Script = scriptToRun diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Customizations/DataLakeAnalyticsCustomizationHelper.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Customizations/DataLakeAnalyticsCustomizationHelper.cs index 0f98d10f2a06..e8f1c79d0ed6 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Customizations/DataLakeAnalyticsCustomizationHelper.cs +++ b/src/SDKs/DataLake.Analytics/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 = "3.0.1"; + internal const string PackageVersion = "3.1.0-preview"; internal const string DefaultAdlaDnsSuffix = "azuredatalakeanalytics.net"; diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/AccountOperations.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/AccountOperations.cs index 226dde8d2dc3..e06310e86aa3 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/AccountOperations.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/AccountOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -93,7 +93,7 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -240,7 +240,7 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient 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")) @@ -253,7 +253,7 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient 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) { @@ -309,7 +309,7 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListWithHttpMessagesAsync(ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListWithHttpMessagesAsync(ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.ApiVersion == null) { @@ -450,7 +450,7 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient 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")) @@ -463,7 +463,7 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient 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) { @@ -482,6 +482,84 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) return _result; } + /// + /// Creates the specified Data Lake Analytics account. This supplies the user + /// with computation services for Data Lake Analytics workloads + /// + /// + /// The name of the Azure resource group that contains the Data Lake Analytics + /// account.the account will be associated with. + /// + /// + /// The name of the Data Lake Analytics account to create. + /// + /// + /// Parameters supplied to the create Data Lake Analytics account operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> CreateWithHttpMessagesAsync(string resourceGroupName, string accountName, DataLakeAnalyticsAccount parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginCreateWithHttpMessagesAsync(resourceGroupName, accountName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Updates the Data Lake Analytics account object specified by the accountName + /// with the contents of the account object. + /// + /// + /// The name of the Azure resource group that contains the Data Lake Analytics + /// account. + /// + /// + /// The name of the Data Lake Analytics account to update. + /// + /// + /// Parameters supplied to the update Data Lake Analytics account operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string accountName, DataLakeAnalyticsAccountUpdateParameters parameters = default(DataLakeAnalyticsAccountUpdateParameters), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, accountName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Begins the delete process for the Data Lake Analytics account object + /// specified by the account name. + /// + /// + /// The name of the Azure resource group that contains the Data Lake Analytics + /// account. + /// + /// + /// The name of the Data Lake Analytics account to delete + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string accountName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, accountName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + /// /// Gets details of the specified Data Lake Analytics account. /// @@ -679,30 +757,6 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) return _result; } - /// - /// Begins the delete delete process for the Data Lake Analytics account object - /// specified by the account name. - /// - /// - /// The name of the Azure resource group that contains the Data Lake Analytics - /// account. - /// - /// - /// The name of the Data Lake Analytics account to delete - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string accountName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, accountName, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - /// /// Creates the specified Data Lake Analytics account. This supplies the user /// with computation services for Data Lake Analytics workloads @@ -718,57 +772,6 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) /// Parameters supplied to the create Data Lake Analytics account operation. /// /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> CreateWithHttpMessagesAsync(string resourceGroupName, string accountName, DataLakeAnalyticsAccount parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send Request - AzureOperationResponse _response = await BeginCreateWithHttpMessagesAsync(resourceGroupName, accountName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Updates the Data Lake Analytics account object specified by the accountName - /// with the contents of the account object. - /// - /// - /// The name of the Azure resource group that contains the Data Lake Analytics - /// account. - /// - /// - /// The name of the Data Lake Analytics account to update. - /// - /// - /// Parameters supplied to the update Data Lake Analytics account operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string accountName, DataLakeAnalyticsAccountUpdateParameters parameters = default(DataLakeAnalyticsAccountUpdateParameters), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send Request - AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, accountName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Begins the delete delete process for the Data Lake Analytics account object - /// specified by the account name. - /// - /// - /// The name of the Azure resource group that contains the Data Lake Analytics - /// account. - /// - /// - /// The name of the Data Lake Analytics account to delete - /// - /// /// Headers that will be added to request. /// /// @@ -777,6 +780,9 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// @@ -786,7 +792,7 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string accountName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginCreateWithHttpMessagesAsync(string resourceGroupName, string accountName, DataLakeAnalyticsAccount parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -796,6 +802,14 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "accountName"); } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); + } if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); @@ -813,8 +827,9 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("accountName", accountName); + tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginCreate", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; @@ -834,7 +849,7 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("DELETE"); + _httpRequest.Method = new HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -865,6 +880,12 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient 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) { @@ -885,7 +906,7 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 202 && (int)_statusCode != 204) + if ((int)_statusCode != 200 && (int)_statusCode != 201) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -920,13 +941,49 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient 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); + } + } + // 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); @@ -935,18 +992,18 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) } /// - /// Creates the specified Data Lake Analytics account. This supplies the user - /// with computation services for Data Lake Analytics workloads + /// Updates the Data Lake Analytics account object specified by the accountName + /// with the contents of the account object. /// /// /// The name of the Azure resource group that contains the Data Lake Analytics - /// account.the account will be associated with. + /// account. /// /// - /// The name of the Data Lake Analytics account to create. + /// The name of the Data Lake Analytics account to update. /// /// - /// Parameters supplied to the create Data Lake Analytics account operation. + /// Parameters supplied to the update Data Lake Analytics account operation. /// /// /// Headers that will be added to request. @@ -969,7 +1026,7 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> BeginCreateWithHttpMessagesAsync(string resourceGroupName, string accountName, DataLakeAnalyticsAccount parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string accountName, DataLakeAnalyticsAccountUpdateParameters parameters = default(DataLakeAnalyticsAccountUpdateParameters), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -979,14 +1036,6 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "accountName"); } - if (parameters == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); - } - if (parameters != null) - { - parameters.Validate(); - } if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); @@ -1006,7 +1055,7 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) tracingParameters.Add("accountName", accountName); tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginCreate", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginUpdate", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; @@ -1026,7 +1075,7 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PUT"); + _httpRequest.Method = new HttpMethod("PATCH"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1083,7 +1132,7 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 201 && (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 @@ -1126,7 +1175,7 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } // Deserialize Response - if ((int)_statusCode == 201) + if ((int)_statusCode == 200) { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try @@ -1144,7 +1193,7 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) } } // Deserialize Response - if ((int)_statusCode == 200) + if ((int)_statusCode == 201) { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try @@ -1169,18 +1218,15 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) } /// - /// Updates the Data Lake Analytics account object specified by the accountName - /// with the contents of the account object. + /// Begins the delete process for the Data Lake Analytics account object + /// specified by the account name. /// /// /// The name of the Azure resource group that contains the Data Lake Analytics /// account. /// /// - /// The name of the Data Lake Analytics account to update. - /// - /// - /// Parameters supplied to the update Data Lake Analytics account operation. + /// The name of the Data Lake Analytics account to delete /// /// /// Headers that will be added to request. @@ -1191,9 +1237,6 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// @@ -1203,7 +1246,7 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string accountName, DataLakeAnalyticsAccountUpdateParameters parameters = default(DataLakeAnalyticsAccountUpdateParameters), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string accountName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -1230,9 +1273,8 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("accountName", accountName); - tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginUpdate", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; @@ -1252,7 +1294,7 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PATCH"); + _httpRequest.Method = new HttpMethod("DELETE"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1283,12 +1325,6 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient 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) { @@ -1309,7 +1345,7 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 201) + if ((int)_statusCode != 200 && (int)_statusCode != 202 && (int)_statusCode != 204) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -1344,49 +1380,13 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient 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); - } - } - // 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); @@ -1422,7 +1422,7 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { @@ -1536,7 +1536,7 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient 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")) @@ -1549,7 +1549,7 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient 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) { @@ -1596,7 +1596,7 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { @@ -1710,7 +1710,7 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient 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")) @@ -1723,7 +1723,7 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/AccountOperationsExtensions.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/AccountOperationsExtensions.cs index 7a3caf61710a..e4ca435e5d64 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/AccountOperationsExtensions.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/AccountOperationsExtensions.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -46,7 +46,7 @@ public static partial class AccountOperationsExtensions /// resources included with the resources in the response, e.g. /// Categories?$count=true. Optional. /// - public static IPage ListByResourceGroup(this IAccountOperations operations, string resourceGroupName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?)) + public static IPage ListByResourceGroup(this IAccountOperations operations, string resourceGroupName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?)) { return operations.ListByResourceGroupAsync(resourceGroupName, odataQuery, select, count).GetAwaiter().GetResult(); } @@ -77,7 +77,7 @@ public static partial class AccountOperationsExtensions /// /// The cancellation token. /// - public static async Task> ListByResourceGroupAsync(this IAccountOperations operations, string resourceGroupName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByResourceGroupAsync(this IAccountOperations operations, string resourceGroupName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ListByResourceGroupWithHttpMessagesAsync(resourceGroupName, odataQuery, select, count, null, cancellationToken).ConfigureAwait(false)) { @@ -104,7 +104,7 @@ public static partial class AccountOperationsExtensions /// resources included with the resources in the response, e.g. /// Categories?$count=true. Optional. /// - public static IPage List(this IAccountOperations operations, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?)) + public static IPage List(this IAccountOperations operations, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?)) { return operations.ListAsync(odataQuery, select, count).GetAwaiter().GetResult(); } @@ -131,7 +131,7 @@ public static partial class AccountOperationsExtensions /// /// The cancellation token. /// - public static async Task> ListAsync(this IAccountOperations operations, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListAsync(this IAccountOperations operations, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ListWithHttpMessagesAsync(odataQuery, select, count, null, cancellationToken).ConfigureAwait(false)) { @@ -139,89 +139,6 @@ public static partial class AccountOperationsExtensions } } - /// - /// Gets details of the specified Data Lake Analytics account. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the Azure resource group that contains the Data Lake Analytics - /// account. - /// - /// - /// The name of the Data Lake Analytics account to retrieve. - /// - public static DataLakeAnalyticsAccount Get(this IAccountOperations operations, string resourceGroupName, string accountName) - { - return operations.GetAsync(resourceGroupName, accountName).GetAwaiter().GetResult(); - } - - /// - /// Gets details of the specified Data Lake Analytics account. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the Azure resource group that contains the Data Lake Analytics - /// account. - /// - /// - /// The name of the Data Lake Analytics account to retrieve. - /// - /// - /// The cancellation token. - /// - public static async Task GetAsync(this IAccountOperations operations, string resourceGroupName, string accountName, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, accountName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Begins the delete delete process for the Data Lake Analytics account object - /// specified by the account name. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the Azure resource group that contains the Data Lake Analytics - /// account. - /// - /// - /// The name of the Data Lake Analytics account to delete - /// - public static void Delete(this IAccountOperations operations, string resourceGroupName, string accountName) - { - operations.DeleteAsync(resourceGroupName, accountName).GetAwaiter().GetResult(); - } - - /// - /// Begins the delete delete process for the Data Lake Analytics account object - /// specified by the account name. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the Azure resource group that contains the Data Lake Analytics - /// account. - /// - /// - /// The name of the Data Lake Analytics account to delete - /// - /// - /// The cancellation token. - /// - 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)).Dispose(); - } - /// /// Creates the specified Data Lake Analytics account. This supplies the user /// with computation services for Data Lake Analytics workloads @@ -323,7 +240,7 @@ public static DataLakeAnalyticsAccount Create(this IAccountOperations operations } /// - /// Begins the delete delete process for the Data Lake Analytics account object + /// Begins the delete process for the Data Lake Analytics account object /// specified by the account name. /// /// @@ -336,13 +253,13 @@ public static DataLakeAnalyticsAccount Create(this IAccountOperations operations /// /// The name of the Data Lake Analytics account to delete /// - public static void BeginDelete(this IAccountOperations operations, string resourceGroupName, string accountName) + public static void Delete(this IAccountOperations operations, string resourceGroupName, string accountName) { - operations.BeginDeleteAsync(resourceGroupName, accountName).GetAwaiter().GetResult(); + operations.DeleteAsync(resourceGroupName, accountName).GetAwaiter().GetResult(); } /// - /// Begins the delete delete process for the Data Lake Analytics account object + /// Begins the delete process for the Data Lake Analytics account object /// specified by the account name. /// /// @@ -358,9 +275,51 @@ public static void BeginDelete(this IAccountOperations operations, string resour /// /// The cancellation token. /// - public static async Task BeginDeleteAsync(this IAccountOperations operations, string resourceGroupName, string accountName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteAsync(this IAccountOperations operations, string resourceGroupName, string accountName, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.BeginDeleteWithHttpMessagesAsync(resourceGroupName, accountName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, accountName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Gets details of the specified Data Lake Analytics account. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the Azure resource group that contains the Data Lake Analytics + /// account. + /// + /// + /// The name of the Data Lake Analytics account to retrieve. + /// + public static DataLakeAnalyticsAccount Get(this IAccountOperations operations, string resourceGroupName, string accountName) + { + return operations.GetAsync(resourceGroupName, accountName).GetAwaiter().GetResult(); + } + + /// + /// Gets details of the specified Data Lake Analytics account. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the Azure resource group that contains the Data Lake Analytics + /// account. + /// + /// + /// The name of the Data Lake Analytics account to retrieve. + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this IAccountOperations operations, string resourceGroupName, string accountName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, accountName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// @@ -463,6 +422,47 @@ public static DataLakeAnalyticsAccount BeginCreate(this IAccountOperations opera } } + /// + /// Begins the delete process for the Data Lake Analytics account object + /// specified by the account name. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the Azure resource group that contains the Data Lake Analytics + /// account. + /// + /// + /// The name of the Data Lake Analytics account to delete + /// + public static void BeginDelete(this IAccountOperations operations, string resourceGroupName, string accountName) + { + operations.BeginDeleteAsync(resourceGroupName, accountName).GetAwaiter().GetResult(); + } + + /// + /// Begins the delete process for the Data Lake Analytics account object + /// specified by the account name. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the Azure resource group that contains the Data Lake Analytics + /// account. + /// + /// + /// The name of the Data Lake Analytics account to delete + /// + /// + /// The cancellation token. + /// + 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)).Dispose(); + } + /// /// Gets the first page of Data Lake Analytics accounts, if any, within a /// specific resource group. This includes a link to the next page, if any. @@ -473,7 +473,7 @@ public static DataLakeAnalyticsAccount BeginCreate(this IAccountOperations opera /// /// The NextLink from the previous successful call to List operation. /// - public static IPage ListByResourceGroupNext(this IAccountOperations operations, string nextPageLink) + public static IPage ListByResourceGroupNext(this IAccountOperations operations, string nextPageLink) { return operations.ListByResourceGroupNextAsync(nextPageLink).GetAwaiter().GetResult(); } @@ -491,7 +491,7 @@ public static IPage ListByResourceGroupNext(this IAcco /// /// The cancellation token. /// - public static async Task> ListByResourceGroupNextAsync(this IAccountOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByResourceGroupNextAsync(this IAccountOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ListByResourceGroupNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) { @@ -509,7 +509,7 @@ public static IPage ListByResourceGroupNext(this IAcco /// /// The NextLink from the previous successful call to List operation. /// - public static IPage ListNext(this IAccountOperations operations, string nextPageLink) + public static IPage ListNext(this IAccountOperations operations, string nextPageLink) { return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); } @@ -527,7 +527,7 @@ public static IPage ListNext(this IAccountOperations o /// /// The cancellation token. /// - public static async Task> ListNextAsync(this IAccountOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListNextAsync(this IAccountOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) { diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/CatalogOperations.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/CatalogOperations.cs index b8f574631ab2..72f2e0b0b49c 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/CatalogOperations.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/CatalogOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -461,8 +461,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } /// - /// Gets the specified secret in the specified database. This is deprecated and - /// will be removed in the next release. Please use GetCredential instead. + /// Deletes the specified secret in the specified database. This is deprecated + /// and will be removed in the next release. Please use DeleteCredential + /// instead. /// /// /// The Azure Data Lake Analytics account upon which to execute catalog @@ -472,7 +473,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) /// The name of the database containing the secret. /// /// - /// The name of the secret to get + /// The name of the secret to delete /// /// /// Headers that will be added to request. @@ -483,9 +484,6 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// @@ -496,7 +494,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) /// A response object containing the response body and response headers. /// [System.Obsolete()] - public async Task> GetSecretWithHttpMessagesAsync(string accountName, string databaseName, string secretName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task DeleteSecretWithHttpMessagesAsync(string accountName, string databaseName, string secretName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (accountName == null) { @@ -529,7 +527,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) tracingParameters.Add("databaseName", databaseName); tracingParameters.Add("secretName", secretName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetSecret", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "DeleteSecret", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri; @@ -550,7 +548,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.Method = new HttpMethod("DELETE"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -636,31 +634,13 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient 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); @@ -669,9 +649,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } /// - /// Deletes the specified secret in the specified database. This is deprecated - /// and will be removed in the next release. Please use DeleteCredential - /// instead. + /// Gets the specified secret in the specified database. This is deprecated and + /// will be removed in the next release. Please use GetCredential instead. /// /// /// The Azure Data Lake Analytics account upon which to execute catalog @@ -681,7 +660,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) /// The name of the database containing the secret. /// /// - /// The name of the secret to delete + /// The name of the secret to get /// /// /// Headers that will be added to request. @@ -692,6 +671,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// @@ -702,7 +684,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) /// A response object containing the response body and response headers. /// [System.Obsolete()] - public async Task DeleteSecretWithHttpMessagesAsync(string accountName, string databaseName, string secretName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetSecretWithHttpMessagesAsync(string accountName, string databaseName, string secretName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (accountName == null) { @@ -735,7 +717,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) tracingParameters.Add("databaseName", databaseName); tracingParameters.Add("secretName", secretName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "DeleteSecret", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetSecret", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri; @@ -756,7 +738,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("DELETE"); + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -842,13 +824,31 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient 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); @@ -886,6 +886,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) /// /// A response object containing the response body and response headers. /// + [System.Obsolete()] public async Task DeleteAllSecretsWithHttpMessagesAsync(string accountName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (accountName == null) @@ -1441,17 +1442,26 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } /// - /// Retrieves the specified credential from the Data Lake Analytics catalog. + /// Deletes the specified credential in the specified database /// /// /// The Azure Data Lake Analytics account upon which to execute catalog /// operations. /// /// - /// The name of the database containing the schema. + /// The name of the database containing the credential. /// /// - /// The name of the credential. + /// The name of the credential to delete + /// + /// + /// The parameters to delete a credential if the current user is not the + /// account owner. + /// + /// + /// Indicates if the delete should be a cascading delete (which deletes all + /// resources dependent on the credential as well as the credential) or not. If + /// false will fail if there are any resources relying on the credential. /// /// /// Headers that will be added to request. @@ -1462,9 +1472,6 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// @@ -1474,7 +1481,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetCredentialWithHttpMessagesAsync(string accountName, string databaseName, string credentialName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task DeleteCredentialWithHttpMessagesAsync(string accountName, string databaseName, string credentialName, DataLakeAnalyticsCatalogCredentialDeleteParameters parameters = default(DataLakeAnalyticsCatalogCredentialDeleteParameters), bool? cascade = false, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (accountName == null) { @@ -1506,8 +1513,10 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) tracingParameters.Add("accountName", accountName); tracingParameters.Add("databaseName", databaseName); tracingParameters.Add("credentialName", credentialName); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cascade", cascade); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetCredential", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "DeleteCredential", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri; @@ -1517,6 +1526,10 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); _url = _url.Replace("{credentialName}", System.Uri.EscapeDataString(credentialName)); List _queryParameters = new List(); + if (cascade != null) + { + _queryParameters.Add(string.Format("cascade={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(cascade, Client.SerializationSettings).Trim('"')))); + } if (Client.ApiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); @@ -1528,7 +1541,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.Method = new HttpMethod("POST"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1559,6 +1572,12 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient 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) { @@ -1614,31 +1633,13 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient 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); @@ -1647,26 +1648,17 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } /// - /// Deletes the specified credential in the specified database + /// Retrieves the specified credential from the Data Lake Analytics catalog. /// /// /// The Azure Data Lake Analytics account upon which to execute catalog /// operations. /// /// - /// The name of the database containing the credential. + /// The name of the database containing the schema. /// /// - /// The name of the credential to delete - /// - /// - /// The parameters to delete a credential if the current user is not the - /// account owner. - /// - /// - /// Indicates if the delete should be a cascading delete (which deletes all - /// resources dependent on the credential as well as the credential) or not. If - /// false will fail if there are any resources relying on the credential. + /// The name of the credential. /// /// /// Headers that will be added to request. @@ -1677,6 +1669,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// @@ -1686,7 +1681,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task DeleteCredentialWithHttpMessagesAsync(string accountName, string databaseName, string credentialName, DataLakeAnalyticsCatalogCredentialDeleteParameters parameters = default(DataLakeAnalyticsCatalogCredentialDeleteParameters), bool? cascade = false, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetCredentialWithHttpMessagesAsync(string accountName, string databaseName, string credentialName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (accountName == null) { @@ -1718,10 +1713,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) tracingParameters.Add("accountName", accountName); tracingParameters.Add("databaseName", databaseName); tracingParameters.Add("credentialName", credentialName); - tracingParameters.Add("parameters", parameters); - tracingParameters.Add("cascade", cascade); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "DeleteCredential", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetCredential", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri; @@ -1731,10 +1724,6 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); _url = _url.Replace("{credentialName}", System.Uri.EscapeDataString(credentialName)); List _queryParameters = new List(); - if (cascade != null) - { - _queryParameters.Add(string.Format("cascade={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(cascade, Client.SerializationSettings).Trim('"')))); - } if (Client.ApiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); @@ -1746,7 +1735,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1777,12 +1766,6 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient 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) { @@ -1838,13 +1821,31 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient 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); @@ -3212,7 +3213,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) /// The basic switch indicates what level of information to return when listing /// tables. When basic is true, only database_name, schema_name, table_name and /// version are returned for each table, otherwise all table metadata is - /// returned. By default, it is false + /// returned. By default, it is false. Optional. /// /// /// Headers that will be added to request. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/CatalogOperationsExtensions.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/CatalogOperationsExtensions.cs index bfd84496504d..c881f7a903cd 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/CatalogOperationsExtensions.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/CatalogOperationsExtensions.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -138,8 +138,9 @@ public static void UpdateSecret(this ICatalogOperations operations, string accou } /// - /// Gets the specified secret in the specified database. This is deprecated and - /// will be removed in the next release. Please use GetCredential instead. + /// Deletes the specified secret in the specified database. This is deprecated + /// and will be removed in the next release. Please use DeleteCredential + /// instead. /// /// /// The operations group for this extension method. @@ -152,17 +153,18 @@ public static void UpdateSecret(this ICatalogOperations operations, string accou /// The name of the database containing the secret. /// /// - /// The name of the secret to get + /// The name of the secret to delete /// [System.Obsolete()] - public static USqlSecret GetSecret(this ICatalogOperations operations, string accountName, string databaseName, string secretName) + public static void DeleteSecret(this ICatalogOperations operations, string accountName, string databaseName, string secretName) { - return operations.GetSecretAsync(accountName, databaseName, secretName).GetAwaiter().GetResult(); + operations.DeleteSecretAsync(accountName, databaseName, secretName).GetAwaiter().GetResult(); } /// - /// Gets the specified secret in the specified database. This is deprecated and - /// will be removed in the next release. Please use GetCredential instead. + /// Deletes the specified secret in the specified database. This is deprecated + /// and will be removed in the next release. Please use DeleteCredential + /// instead. /// /// /// The operations group for this extension method. @@ -175,24 +177,20 @@ public static USqlSecret GetSecret(this ICatalogOperations operations, string ac /// The name of the database containing the secret. /// /// - /// The name of the secret to get + /// The name of the secret to delete /// /// /// The cancellation token. /// [System.Obsolete()] - public static async Task GetSecretAsync(this ICatalogOperations operations, string accountName, string databaseName, string secretName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteSecretAsync(this ICatalogOperations operations, string accountName, string databaseName, string secretName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetSecretWithHttpMessagesAsync(accountName, databaseName, secretName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + (await operations.DeleteSecretWithHttpMessagesAsync(accountName, databaseName, secretName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// Deletes the specified secret in the specified database. This is deprecated - /// and will be removed in the next release. Please use DeleteCredential - /// instead. + /// Gets the specified secret in the specified database. This is deprecated and + /// will be removed in the next release. Please use GetCredential instead. /// /// /// The operations group for this extension method. @@ -205,18 +203,17 @@ public static USqlSecret GetSecret(this ICatalogOperations operations, string ac /// The name of the database containing the secret. /// /// - /// The name of the secret to delete + /// The name of the secret to get /// [System.Obsolete()] - public static void DeleteSecret(this ICatalogOperations operations, string accountName, string databaseName, string secretName) + public static USqlSecret GetSecret(this ICatalogOperations operations, string accountName, string databaseName, string secretName) { - operations.DeleteSecretAsync(accountName, databaseName, secretName).GetAwaiter().GetResult(); + return operations.GetSecretAsync(accountName, databaseName, secretName).GetAwaiter().GetResult(); } /// - /// Deletes the specified secret in the specified database. This is deprecated - /// and will be removed in the next release. Please use DeleteCredential - /// instead. + /// Gets the specified secret in the specified database. This is deprecated and + /// will be removed in the next release. Please use GetCredential instead. /// /// /// The operations group for this extension method. @@ -229,15 +226,18 @@ public static void DeleteSecret(this ICatalogOperations operations, string accou /// The name of the database containing the secret. /// /// - /// The name of the secret to delete + /// The name of the secret to get /// /// /// The cancellation token. /// [System.Obsolete()] - public static async Task DeleteSecretAsync(this ICatalogOperations operations, string accountName, string databaseName, string secretName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetSecretAsync(this ICatalogOperations operations, string accountName, string databaseName, string secretName, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.DeleteSecretWithHttpMessagesAsync(accountName, databaseName, secretName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + using (var _result = await operations.GetSecretWithHttpMessagesAsync(accountName, databaseName, secretName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// @@ -255,6 +255,7 @@ public static void DeleteSecret(this ICatalogOperations operations, string accou /// /// The name of the database containing the secret. /// + [System.Obsolete()] public static void DeleteAllSecrets(this ICatalogOperations operations, string accountName, string databaseName) { operations.DeleteAllSecretsAsync(accountName, databaseName).GetAwaiter().GetResult(); @@ -278,6 +279,7 @@ public static void DeleteAllSecrets(this ICatalogOperations operations, string a /// /// The cancellation token. /// + [System.Obsolete()] 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)).Dispose(); @@ -394,7 +396,7 @@ public static void UpdateCredential(this ICatalogOperations operations, string a } /// - /// Retrieves the specified credential from the Data Lake Analytics catalog. + /// Deletes the specified credential in the specified database /// /// /// The operations group for this extension method. @@ -404,18 +406,27 @@ public static void UpdateCredential(this ICatalogOperations operations, string a /// operations. /// /// - /// The name of the database containing the schema. + /// The name of the database containing the credential. /// /// - /// The name of the credential. + /// The name of the credential to delete /// - public static USqlCredential GetCredential(this ICatalogOperations operations, string accountName, string databaseName, string credentialName) + /// + /// The parameters to delete a credential if the current user is not the + /// account owner. + /// + /// + /// Indicates if the delete should be a cascading delete (which deletes all + /// resources dependent on the credential as well as the credential) or not. If + /// false will fail if there are any resources relying on the credential. + /// + public static void DeleteCredential(this ICatalogOperations operations, string accountName, string databaseName, string credentialName, DataLakeAnalyticsCatalogCredentialDeleteParameters parameters = default(DataLakeAnalyticsCatalogCredentialDeleteParameters), bool? cascade = false) { - return operations.GetCredentialAsync(accountName, databaseName, credentialName).GetAwaiter().GetResult(); + operations.DeleteCredentialAsync(accountName, databaseName, credentialName, parameters, cascade).GetAwaiter().GetResult(); } /// - /// Retrieves the specified credential from the Data Lake Analytics catalog. + /// Deletes the specified credential in the specified database /// /// /// The operations group for this extension method. @@ -425,24 +436,30 @@ public static USqlCredential GetCredential(this ICatalogOperations operations, s /// operations. /// /// - /// The name of the database containing the schema. + /// The name of the database containing the credential. /// /// - /// The name of the credential. + /// The name of the credential to delete + /// + /// + /// The parameters to delete a credential if the current user is not the + /// account owner. + /// + /// + /// Indicates if the delete should be a cascading delete (which deletes all + /// resources dependent on the credential as well as the credential) or not. If + /// false will fail if there are any resources relying on the credential. /// /// /// The cancellation token. /// - public static async Task GetCredentialAsync(this ICatalogOperations operations, string accountName, string databaseName, string credentialName, CancellationToken cancellationToken = default(CancellationToken)) + 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)) { - using (var _result = await operations.GetCredentialWithHttpMessagesAsync(accountName, databaseName, credentialName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + (await operations.DeleteCredentialWithHttpMessagesAsync(accountName, databaseName, credentialName, parameters, cascade, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// Deletes the specified credential in the specified database + /// Retrieves the specified credential from the Data Lake Analytics catalog. /// /// /// The operations group for this extension method. @@ -452,27 +469,18 @@ public static USqlCredential GetCredential(this ICatalogOperations operations, s /// operations. /// /// - /// The name of the database containing the credential. + /// The name of the database containing the schema. /// /// - /// The name of the credential to delete - /// - /// - /// The parameters to delete a credential if the current user is not the - /// account owner. - /// - /// - /// Indicates if the delete should be a cascading delete (which deletes all - /// resources dependent on the credential as well as the credential) or not. If - /// false will fail if there are any resources relying on the credential. + /// The name of the credential. /// - public static void DeleteCredential(this ICatalogOperations operations, string accountName, string databaseName, string credentialName, DataLakeAnalyticsCatalogCredentialDeleteParameters parameters = default(DataLakeAnalyticsCatalogCredentialDeleteParameters), bool? cascade = false) + public static USqlCredential GetCredential(this ICatalogOperations operations, string accountName, string databaseName, string credentialName) { - operations.DeleteCredentialAsync(accountName, databaseName, credentialName, parameters, cascade).GetAwaiter().GetResult(); + return operations.GetCredentialAsync(accountName, databaseName, credentialName).GetAwaiter().GetResult(); } /// - /// Deletes the specified credential in the specified database + /// Retrieves the specified credential from the Data Lake Analytics catalog. /// /// /// The operations group for this extension method. @@ -482,26 +490,20 @@ public static USqlCredential GetCredential(this ICatalogOperations operations, s /// operations. /// /// - /// The name of the database containing the credential. + /// The name of the database containing the schema. /// /// - /// The name of the credential to delete - /// - /// - /// The parameters to delete a credential if the current user is not the - /// account owner. - /// - /// - /// Indicates if the delete should be a cascading delete (which deletes all - /// resources dependent on the credential as well as the credential) or not. If - /// false will fail if there are any resources relying on the credential. + /// The name of the credential. /// /// /// The cancellation token. /// - 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)) + public static async Task GetCredentialAsync(this ICatalogOperations operations, string accountName, string databaseName, string credentialName, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.DeleteCredentialWithHttpMessagesAsync(accountName, databaseName, credentialName, parameters, cascade, null, cancellationToken).ConfigureAwait(false)).Dispose(); + using (var _result = await operations.GetCredentialWithHttpMessagesAsync(accountName, databaseName, credentialName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// @@ -900,7 +902,7 @@ public static USqlTable GetTable(this ICatalogOperations operations, string acco /// The basic switch indicates what level of information to return when listing /// tables. When basic is true, only database_name, schema_name, table_name and /// version are returned for each table, otherwise all table metadata is - /// returned. By default, it is false + /// returned. By default, it is false. Optional. /// public static IPage ListTables(this ICatalogOperations operations, string accountName, string databaseName, string schemaName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), bool? basic = false) { @@ -939,7 +941,7 @@ public static USqlTable GetTable(this ICatalogOperations operations, string acco /// The basic switch indicates what level of information to return when listing /// tables. When basic is true, only database_name, schema_name, table_name and /// version are returned for each table, otherwise all table metadata is - /// returned. By default, it is false + /// returned. By default, it is false. Optional. /// /// /// The cancellation token. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/ComputePoliciesOperations.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/ComputePoliciesOperations.cs index 0d621687f32e..3f85b675ec59 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/ComputePoliciesOperations.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/ComputePoliciesOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/ComputePoliciesOperationsExtensions.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/ComputePoliciesOperationsExtensions.cs index 5c16fc53e1e0..38d416f3802f 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/ComputePoliciesOperationsExtensions.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/ComputePoliciesOperationsExtensions.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/DataLakeAnalyticsAccountManagementClient.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/DataLakeAnalyticsAccountManagementClient.cs index e5c9beaf36b4..8caf6176912a 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/DataLakeAnalyticsAccountManagementClient.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/DataLakeAnalyticsAccountManagementClient.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/DataLakeAnalyticsCatalogManagementClient.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/DataLakeAnalyticsCatalogManagementClient.cs index 4b88c72a7e19..86237949bcaf 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/DataLakeAnalyticsCatalogManagementClient.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/DataLakeAnalyticsCatalogManagementClient.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/DataLakeAnalyticsJobManagementClient.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/DataLakeAnalyticsJobManagementClient.cs index 1136134f5d1c..0e60a58f5292 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/DataLakeAnalyticsJobManagementClient.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/DataLakeAnalyticsJobManagementClient.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -213,6 +213,8 @@ private void Initialize() }; SerializationSettings.Converters.Add(new PolymorphicSerializeJsonConverter("type")); DeserializationSettings.Converters.Add(new PolymorphicDeserializeJsonConverter("type")); + SerializationSettings.Converters.Add(new PolymorphicSerializeJsonConverter("type")); + DeserializationSettings.Converters.Add(new PolymorphicDeserializeJsonConverter("type")); CustomInitialize(); DeserializationSettings.Converters.Add(new CloudErrorJsonConverter()); } diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/DataLakeStoreAccountsOperations.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/DataLakeStoreAccountsOperations.cs index 711d882f6a74..b0a4e5decb3c 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/DataLakeStoreAccountsOperations.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/DataLakeStoreAccountsOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -53,19 +53,22 @@ internal DataLakeStoreAccountsOperations(DataLakeAnalyticsAccountManagementClien public DataLakeAnalyticsAccountManagementClient Client { get; private set; } /// - /// Gets the specified Data Lake Store account details in the specified Data - /// Lake Analytics account. + /// Updates the specified Data Lake Analytics account to include the additional + /// Data Lake Store account. /// /// /// The name of the Azure resource group that contains the Data Lake Analytics /// account. /// /// - /// The name of the Data Lake Analytics account from which to retrieve the Data - /// Lake Store account details. + /// The name of the Data Lake Analytics account to which to add the Data Lake + /// Store account. /// /// - /// The name of the Data Lake Store account to retrieve + /// The name of the Data Lake Store account to add. + /// + /// + /// The details of the Data Lake Store account. /// /// /// Headers that will be added to request. @@ -76,9 +79,6 @@ internal DataLakeStoreAccountsOperations(DataLakeAnalyticsAccountManagementClien /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// @@ -88,7 +88,7 @@ internal DataLakeStoreAccountsOperations(DataLakeAnalyticsAccountManagementClien /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string accountName, string dataLakeStoreAccountName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task AddWithHttpMessagesAsync(string resourceGroupName, string accountName, string dataLakeStoreAccountName, AddDataLakeStoreParameters parameters = default(AddDataLakeStoreParameters), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -120,8 +120,9 @@ internal DataLakeStoreAccountsOperations(DataLakeAnalyticsAccountManagementClien tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("accountName", accountName); tracingParameters.Add("dataLakeStoreAccountName", dataLakeStoreAccountName); + tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Add", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; @@ -142,7 +143,7 @@ internal DataLakeStoreAccountsOperations(DataLakeAnalyticsAccountManagementClien // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.Method = new HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -173,6 +174,12 @@ internal DataLakeStoreAccountsOperations(DataLakeAnalyticsAccountManagementClien // 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) { @@ -228,31 +235,13 @@ internal DataLakeStoreAccountsOperations(DataLakeAnalyticsAccountManagementClien 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); @@ -448,22 +437,19 @@ internal DataLakeStoreAccountsOperations(DataLakeAnalyticsAccountManagementClien } /// - /// Updates the specified Data Lake Analytics account to include the additional - /// Data Lake Store account. + /// Gets the specified Data Lake Store account details in the specified Data + /// Lake Analytics account. /// /// /// The name of the Azure resource group that contains the Data Lake Analytics /// account. /// /// - /// The name of the Data Lake Analytics account to which to add the Data Lake - /// Store account. + /// The name of the Data Lake Analytics account from which to retrieve the Data + /// Lake Store account details. /// /// - /// The name of the Data Lake Store account to add. - /// - /// - /// The details of the Data Lake Store account. + /// The name of the Data Lake Store account to retrieve /// /// /// Headers that will be added to request. @@ -474,6 +460,9 @@ internal DataLakeStoreAccountsOperations(DataLakeAnalyticsAccountManagementClien /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// @@ -483,7 +472,7 @@ internal DataLakeStoreAccountsOperations(DataLakeAnalyticsAccountManagementClien /// /// A response object containing the response body and response headers. /// - public async Task AddWithHttpMessagesAsync(string resourceGroupName, string accountName, string dataLakeStoreAccountName, AddDataLakeStoreParameters parameters = default(AddDataLakeStoreParameters), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string accountName, string dataLakeStoreAccountName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -515,9 +504,8 @@ internal DataLakeStoreAccountsOperations(DataLakeAnalyticsAccountManagementClien tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("accountName", accountName); tracingParameters.Add("dataLakeStoreAccountName", dataLakeStoreAccountName); - tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Add", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; @@ -538,7 +526,7 @@ internal DataLakeStoreAccountsOperations(DataLakeAnalyticsAccountManagementClien // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PUT"); + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -569,12 +557,6 @@ internal DataLakeStoreAccountsOperations(DataLakeAnalyticsAccountManagementClien // 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) { @@ -630,13 +612,31 @@ internal DataLakeStoreAccountsOperations(DataLakeAnalyticsAccountManagementClien 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); diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/DataLakeStoreAccountsOperationsExtensions.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/DataLakeStoreAccountsOperationsExtensions.cs index 6f9abab3d6e7..de6d83e0081c 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/DataLakeStoreAccountsOperationsExtensions.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/DataLakeStoreAccountsOperationsExtensions.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -24,8 +24,8 @@ namespace Microsoft.Azure.Management.DataLake.Analytics public static partial class DataLakeStoreAccountsOperationsExtensions { /// - /// Gets the specified Data Lake Store account details in the specified Data - /// Lake Analytics account. + /// Updates the specified Data Lake Analytics account to include the additional + /// Data Lake Store account. /// /// /// The operations group for this extension method. @@ -35,20 +35,23 @@ public static partial class DataLakeStoreAccountsOperationsExtensions /// account. /// /// - /// The name of the Data Lake Analytics account from which to retrieve the Data - /// Lake Store account details. + /// The name of the Data Lake Analytics account to which to add the Data Lake + /// Store account. /// /// - /// The name of the Data Lake Store account to retrieve + /// The name of the Data Lake Store account to add. /// - public static DataLakeStoreAccountInfo Get(this IDataLakeStoreAccountsOperations operations, string resourceGroupName, string accountName, string dataLakeStoreAccountName) + /// + /// The details of the Data Lake Store account. + /// + public static void Add(this IDataLakeStoreAccountsOperations operations, string resourceGroupName, string accountName, string dataLakeStoreAccountName, AddDataLakeStoreParameters parameters = default(AddDataLakeStoreParameters)) { - return operations.GetAsync(resourceGroupName, accountName, dataLakeStoreAccountName).GetAwaiter().GetResult(); + operations.AddAsync(resourceGroupName, accountName, dataLakeStoreAccountName, parameters).GetAwaiter().GetResult(); } /// - /// Gets the specified Data Lake Store account details in the specified Data - /// Lake Analytics account. + /// Updates the specified Data Lake Analytics account to include the additional + /// Data Lake Store account. /// /// /// The operations group for this extension method. @@ -58,21 +61,21 @@ public static DataLakeStoreAccountInfo Get(this IDataLakeStoreAccountsOperations /// account. /// /// - /// The name of the Data Lake Analytics account from which to retrieve the Data - /// Lake Store account details. + /// The name of the Data Lake Analytics account to which to add the Data Lake + /// Store account. /// /// - /// The name of the Data Lake Store account to retrieve + /// The name of the Data Lake Store account to add. + /// + /// + /// The details of the Data Lake Store account. /// /// /// The cancellation token. /// - public static async Task GetAsync(this IDataLakeStoreAccountsOperations operations, string resourceGroupName, string accountName, string dataLakeStoreAccountName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task AddAsync(this IDataLakeStoreAccountsOperations operations, string resourceGroupName, string accountName, string dataLakeStoreAccountName, AddDataLakeStoreParameters parameters = default(AddDataLakeStoreParameters), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, accountName, dataLakeStoreAccountName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + (await operations.AddWithHttpMessagesAsync(resourceGroupName, accountName, dataLakeStoreAccountName, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -125,8 +128,8 @@ public static void Delete(this IDataLakeStoreAccountsOperations operations, stri } /// - /// Updates the specified Data Lake Analytics account to include the additional - /// Data Lake Store account. + /// Gets the specified Data Lake Store account details in the specified Data + /// Lake Analytics account. /// /// /// The operations group for this extension method. @@ -136,23 +139,20 @@ public static void Delete(this IDataLakeStoreAccountsOperations operations, stri /// account. /// /// - /// The name of the Data Lake Analytics account to which to add the Data Lake - /// Store account. + /// The name of the Data Lake Analytics account from which to retrieve the Data + /// Lake Store account details. /// /// - /// The name of the Data Lake Store account to add. - /// - /// - /// The details of the Data Lake Store account. + /// The name of the Data Lake Store account to retrieve /// - public static void Add(this IDataLakeStoreAccountsOperations operations, string resourceGroupName, string accountName, string dataLakeStoreAccountName, AddDataLakeStoreParameters parameters = default(AddDataLakeStoreParameters)) + public static DataLakeStoreAccountInfo Get(this IDataLakeStoreAccountsOperations operations, string resourceGroupName, string accountName, string dataLakeStoreAccountName) { - operations.AddAsync(resourceGroupName, accountName, dataLakeStoreAccountName, parameters).GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, accountName, dataLakeStoreAccountName).GetAwaiter().GetResult(); } /// - /// Updates the specified Data Lake Analytics account to include the additional - /// Data Lake Store account. + /// Gets the specified Data Lake Store account details in the specified Data + /// Lake Analytics account. /// /// /// The operations group for this extension method. @@ -162,21 +162,21 @@ public static void Delete(this IDataLakeStoreAccountsOperations operations, stri /// account. /// /// - /// The name of the Data Lake Analytics account to which to add the Data Lake - /// Store account. + /// The name of the Data Lake Analytics account from which to retrieve the Data + /// Lake Store account details. /// /// - /// The name of the Data Lake Store account to add. - /// - /// - /// The details of the Data Lake Store account. + /// The name of the Data Lake Store account to retrieve /// /// /// The cancellation token. /// - public static async Task AddAsync(this IDataLakeStoreAccountsOperations operations, string resourceGroupName, string accountName, string dataLakeStoreAccountName, AddDataLakeStoreParameters parameters = default(AddDataLakeStoreParameters), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAsync(this IDataLakeStoreAccountsOperations operations, string resourceGroupName, string accountName, string dataLakeStoreAccountName, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.AddWithHttpMessagesAsync(resourceGroupName, accountName, dataLakeStoreAccountName, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose(); + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, accountName, dataLakeStoreAccountName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/FirewallRulesOperations.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/FirewallRulesOperations.cs index 64f127def815..242fbbe588eb 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/FirewallRulesOperations.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/FirewallRulesOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/FirewallRulesOperationsExtensions.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/FirewallRulesOperationsExtensions.cs index bf67e85ecad9..295e16a88f56 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/FirewallRulesOperationsExtensions.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/FirewallRulesOperationsExtensions.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IAccountOperations.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IAccountOperations.cs index 55367b8c600a..86010f087069 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IAccountOperations.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IAccountOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -62,7 +62,7 @@ public partial interface IAccountOperations /// /// 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)); + Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets the first page of Data Lake Analytics accounts, if any, within /// the current subscription. This includes a link to the next page, if @@ -96,16 +96,22 @@ public partial interface IAccountOperations /// /// 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)); + Task>> ListWithHttpMessagesAsync(ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets details of the specified Data Lake Analytics account. + /// Creates the specified Data Lake Analytics account. This supplies + /// the user with computation services for Data Lake Analytics + /// workloads /// /// /// The name of the Azure resource group that contains the Data Lake - /// Analytics account. + /// Analytics account.the account will be associated with. /// /// - /// The name of the Data Lake Analytics account to retrieve. + /// The name of the Data Lake Analytics account to create. + /// + /// + /// Parameters supplied to the create Data Lake Analytics account + /// operation. /// /// /// The headers that will be added to request. @@ -122,45 +128,20 @@ public partial interface IAccountOperations /// /// Thrown when a required parameter is null /// - Task> GetWithHttpMessagesAsync(string resourceGroupName, string accountName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateWithHttpMessagesAsync(string resourceGroupName, string accountName, DataLakeAnalyticsAccount parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Begins the delete delete process for the Data Lake Analytics - /// account object specified by the account name. + /// Updates the Data Lake Analytics account object specified by the + /// accountName with the contents of the account object. /// /// /// The name of the Azure resource group that contains the Data Lake /// Analytics account. /// /// - /// The name of the Data Lake Analytics account to delete - /// - /// - /// 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 accountName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Creates the specified Data Lake Analytics account. This supplies - /// the user with computation services for Data Lake Analytics - /// workloads - /// - /// - /// The name of the Azure resource group that contains the Data Lake - /// Analytics account.the account will be associated with. - /// - /// - /// The name of the Data Lake Analytics account to create. + /// The name of the Data Lake Analytics account to update. /// /// - /// Parameters supplied to the create Data Lake Analytics account + /// Parameters supplied to the update Data Lake Analytics account /// operation. /// /// @@ -178,21 +159,17 @@ public partial interface IAccountOperations /// /// Thrown when a required parameter is null /// - Task> CreateWithHttpMessagesAsync(string resourceGroupName, string accountName, DataLakeAnalyticsAccount parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string accountName, DataLakeAnalyticsAccountUpdateParameters parameters = default(DataLakeAnalyticsAccountUpdateParameters), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Updates the Data Lake Analytics account object specified by the - /// accountName with the contents of the account object. + /// Begins the delete process for the Data Lake Analytics account + /// object specified by the account name. /// /// /// The name of the Azure resource group that contains the Data Lake /// Analytics account. /// /// - /// The name of the Data Lake Analytics account to update. - /// - /// - /// Parameters supplied to the update Data Lake Analytics account - /// operation. + /// The name of the Data Lake Analytics account to delete /// /// /// The headers that will be added to request. @@ -203,23 +180,19 @@ public partial interface IAccountOperations /// /// 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)); + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string accountName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Begins the delete delete process for the Data Lake Analytics - /// account object specified by the account name. + /// Gets details of the specified Data Lake Analytics account. /// /// /// The name of the Azure resource group that contains the Data Lake /// Analytics account. /// /// - /// The name of the Data Lake Analytics account to delete + /// The name of the Data Lake Analytics account to retrieve. /// /// /// The headers that will be added to request. @@ -230,10 +203,13 @@ public partial interface IAccountOperations /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// - Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string accountName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string accountName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Creates the specified Data Lake Analytics account. This supplies /// the user with computation services for Data Lake Analytics @@ -298,6 +274,30 @@ public partial interface IAccountOperations /// Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string accountName, DataLakeAnalyticsAccountUpdateParameters parameters = default(DataLakeAnalyticsAccountUpdateParameters), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// + /// Begins the delete process for the Data Lake Analytics account + /// object specified by the account name. + /// + /// + /// The name of the Azure resource group that contains the Data Lake + /// Analytics account. + /// + /// + /// The name of the Data Lake Analytics account to delete + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string accountName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Gets the first page of Data Lake Analytics accounts, if any, within /// a specific resource group. This includes a link to the next page, /// if any. @@ -320,7 +320,7 @@ public partial interface IAccountOperations /// /// Thrown when a required parameter is null /// - Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets the first page of Data Lake Analytics accounts, if any, within /// the current subscription. This includes a link to the next page, if @@ -344,6 +344,6 @@ public partial interface IAccountOperations /// /// Thrown when a required parameter is null /// - Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/ICatalogOperations.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/ICatalogOperations.cs index e4a86b41e946..a917e8ba4354 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/ICatalogOperations.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/ICatalogOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -90,9 +90,9 @@ public partial interface ICatalogOperations [System.Obsolete()] Task UpdateSecretWithHttpMessagesAsync(string accountName, string databaseName, string secretName, DataLakeAnalyticsCatalogSecretCreateOrUpdateParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets the specified secret in the specified database. This is + /// Deletes the specified secret in the specified database. This is /// deprecated and will be removed in the next release. Please use - /// GetCredential instead. + /// DeleteCredential instead. /// /// /// The Azure Data Lake Analytics account upon which to execute catalog @@ -102,7 +102,7 @@ public partial interface ICatalogOperations /// The name of the database containing the secret. /// /// - /// The name of the secret to get + /// The name of the secret to delete /// /// /// The headers that will be added to request. @@ -113,18 +113,15 @@ public partial interface ICatalogOperations /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// [System.Obsolete()] - Task> GetSecretWithHttpMessagesAsync(string accountName, string databaseName, string secretName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task DeleteSecretWithHttpMessagesAsync(string accountName, string databaseName, string secretName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Deletes the specified secret in the specified database. This is + /// Gets the specified secret in the specified database. This is /// deprecated and will be removed in the next release. Please use - /// DeleteCredential instead. + /// GetCredential instead. /// /// /// The Azure Data Lake Analytics account upon which to execute catalog @@ -134,7 +131,7 @@ public partial interface ICatalogOperations /// The name of the database containing the secret. /// /// - /// The name of the secret to delete + /// The name of the secret to get /// /// /// The headers that will be added to request. @@ -145,11 +142,14 @@ public partial interface ICatalogOperations /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// [System.Obsolete()] - Task DeleteSecretWithHttpMessagesAsync(string accountName, string databaseName, string secretName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetSecretWithHttpMessagesAsync(string accountName, string databaseName, string secretName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Deletes all secrets in the specified database. This is deprecated /// and will be removed in the next release. In the future, please only @@ -168,12 +168,13 @@ public partial interface ICatalogOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when a required parameter is null /// + [System.Obsolete()] Task DeleteAllSecretsWithHttpMessagesAsync(string accountName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Creates the specified credential for use with external data sources @@ -240,18 +241,27 @@ public partial interface ICatalogOperations /// Task UpdateCredentialWithHttpMessagesAsync(string accountName, string databaseName, string credentialName, DataLakeAnalyticsCatalogCredentialUpdateParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Retrieves the specified credential from the Data Lake Analytics - /// catalog. + /// Deletes the specified credential in the specified database /// /// /// The Azure Data Lake Analytics account upon which to execute catalog /// operations. /// /// - /// The name of the database containing the schema. + /// The name of the database containing the credential. /// /// - /// The name of the credential. + /// The name of the credential to delete + /// + /// + /// The parameters to delete a credential if the current user is not + /// the account owner. + /// + /// + /// Indicates if the delete should be a cascading delete (which deletes + /// all resources dependent on the credential as well as the + /// credential) or not. If false will fail if there are any resources + /// relying on the credential. /// /// /// The headers that will be added to request. @@ -262,35 +272,23 @@ public partial interface ICatalogOperations /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// - Task> GetCredentialWithHttpMessagesAsync(string accountName, string databaseName, string credentialName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task DeleteCredentialWithHttpMessagesAsync(string accountName, string databaseName, string credentialName, DataLakeAnalyticsCatalogCredentialDeleteParameters parameters = default(DataLakeAnalyticsCatalogCredentialDeleteParameters), bool? cascade = false, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Deletes the specified credential in the specified database + /// Retrieves the specified credential from the Data Lake Analytics + /// catalog. /// /// /// The Azure Data Lake Analytics account upon which to execute catalog /// operations. /// /// - /// The name of the database containing the credential. + /// The name of the database containing the schema. /// /// - /// The name of the credential to delete - /// - /// - /// The parameters to delete a credential if the current user is not - /// the account owner. - /// - /// - /// Indicates if the delete should be a cascading delete (which deletes - /// all resources dependent on the credential as well as the - /// credential) or not. If false will fail if there are any resources - /// relying on the credential. + /// The name of the credential. /// /// /// The headers that will be added to request. @@ -301,10 +299,13 @@ public partial interface ICatalogOperations /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// - Task DeleteCredentialWithHttpMessagesAsync(string accountName, string databaseName, string credentialName, DataLakeAnalyticsCatalogCredentialDeleteParameters parameters = default(DataLakeAnalyticsCatalogCredentialDeleteParameters), bool? cascade = false, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetCredentialWithHttpMessagesAsync(string accountName, string databaseName, string credentialName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Retrieves the list of credentials from the Data Lake Analytics /// catalog. @@ -553,7 +554,8 @@ public partial interface ICatalogOperations /// The basic switch indicates what level of information to return when /// listing tables. When basic is true, only database_name, /// schema_name, table_name and version are returned for each table, - /// otherwise all table metadata is returned. By default, it is false + /// otherwise all table metadata is returned. By default, it is false. + /// Optional. /// /// /// The headers that will be added to request. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IComputePoliciesOperations.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IComputePoliciesOperations.cs index 91e21d0458bb..6f1568269716 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IComputePoliciesOperations.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IComputePoliciesOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IDataLakeAnalyticsAccountManagementClient.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IDataLakeAnalyticsAccountManagementClient.cs index 583ebfa4fdcd..0cf9cfcfb57a 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IDataLakeAnalyticsAccountManagementClient.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IDataLakeAnalyticsAccountManagementClient.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IDataLakeAnalyticsCatalogManagementClient.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IDataLakeAnalyticsCatalogManagementClient.cs index 8a4b15eb54e9..0bd780b9b79d 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IDataLakeAnalyticsCatalogManagementClient.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IDataLakeAnalyticsCatalogManagementClient.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IDataLakeAnalyticsJobManagementClient.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IDataLakeAnalyticsJobManagementClient.cs index f8821e338fd8..e292e76a6e03 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IDataLakeAnalyticsJobManagementClient.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IDataLakeAnalyticsJobManagementClient.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IDataLakeStoreAccountsOperations.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IDataLakeStoreAccountsOperations.cs index cf48f8a10549..8d38a4508b47 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IDataLakeStoreAccountsOperations.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IDataLakeStoreAccountsOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -26,19 +26,22 @@ namespace Microsoft.Azure.Management.DataLake.Analytics public partial interface IDataLakeStoreAccountsOperations { /// - /// Gets the specified Data Lake Store account details in the specified - /// Data Lake Analytics account. + /// Updates the specified Data Lake Analytics account to include the + /// additional Data Lake Store account. /// /// /// The name of the Azure resource group that contains the Data Lake /// Analytics account. /// /// - /// The name of the Data Lake Analytics account from which to retrieve - /// the Data Lake Store account details. + /// The name of the Data Lake Analytics account to which to add the + /// Data Lake Store account. /// /// - /// The name of the Data Lake Store account to retrieve + /// The name of the Data Lake Store account to add. + /// + /// + /// The details of the Data Lake Store account. /// /// /// The headers that will be added to request. @@ -49,13 +52,10 @@ public partial interface IDataLakeStoreAccountsOperations /// /// 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)); + Task AddWithHttpMessagesAsync(string resourceGroupName, string accountName, string dataLakeStoreAccountName, AddDataLakeStoreParameters parameters = default(AddDataLakeStoreParameters), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Updates the Data Lake Analytics account specified to remove the /// specified Data Lake Store account. @@ -85,22 +85,19 @@ public partial interface IDataLakeStoreAccountsOperations /// Task DeleteWithHttpMessagesAsync(string resourceGroupName, string accountName, string dataLakeStoreAccountName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Updates the specified Data Lake Analytics account to include the - /// additional Data Lake Store account. + /// Gets the specified Data Lake Store account details in the specified + /// Data Lake Analytics account. /// /// /// The name of the Azure resource group that contains the Data Lake /// Analytics account. /// /// - /// The name of the Data Lake Analytics account to which to add the - /// Data Lake Store account. + /// The name of the Data Lake Analytics account from which to retrieve + /// the Data Lake Store account details. /// /// - /// The name of the Data Lake Store account to add. - /// - /// - /// The details of the Data Lake Store account. + /// The name of the Data Lake Store account to retrieve /// /// /// The headers that will be added to request. @@ -111,10 +108,13 @@ public partial interface IDataLakeStoreAccountsOperations /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// 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)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string accountName, string dataLakeStoreAccountName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets the first page of Data Lake Store accounts linked to the /// specified Data Lake Analytics account. The response includes a link diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IFirewallRulesOperations.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IFirewallRulesOperations.cs index d6f3d34cdd3f..9bd26d2a77fc 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IFirewallRulesOperations.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IFirewallRulesOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IJobOperations.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IJobOperations.cs index fb2143ec60d2..690b145687ad 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IJobOperations.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IJobOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -100,7 +100,7 @@ public partial interface IJobOperations /// /// Thrown when a required parameter is null /// - Task> BuildWithHttpMessagesAsync(string accountName, JobInformation parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> BuildWithHttpMessagesAsync(string accountName, BuildJobParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Cancels the running job specified by the job ID. /// @@ -124,13 +124,16 @@ public partial interface IJobOperations /// Task CancelWithHttpMessagesAsync(string accountName, System.Guid jobIdentity, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets the job information for the specified job ID. + /// Submits a job to the specified Data Lake Analytics account. /// /// /// The Azure Data Lake Analytics account to execute job operations on. /// /// - /// JobInfo ID. + /// The job ID (a GUID) for the job being submitted. + /// + /// + /// The parameters to submit a job. /// /// /// The headers that will be added to request. @@ -147,18 +150,15 @@ public partial interface IJobOperations /// /// Thrown when a required parameter is null /// - Task> GetWithHttpMessagesAsync(string accountName, System.Guid jobIdentity, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateWithHttpMessagesAsync(string accountName, System.Guid jobIdentity, CreateJobParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Submits a job to the specified Data Lake Analytics account. + /// Gets the job information for the specified job ID. /// /// /// The Azure Data Lake Analytics account to execute job operations on. /// /// - /// The job ID (a GUID) for the job being submitted. - /// - /// - /// The parameters to submit a job. + /// JobInfo ID. /// /// /// The headers that will be added to request. @@ -175,7 +175,7 @@ public partial interface IJobOperations /// /// Thrown when a required parameter is null /// - Task> CreateWithHttpMessagesAsync(string accountName, System.Guid jobIdentity, JobInformation parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetWithHttpMessagesAsync(string accountName, System.Guid jobIdentity, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Lists the jobs, if any, associated with the specified Data Lake /// Analytics account. The response includes a link to the next page of @@ -212,7 +212,7 @@ public partial interface IJobOperations /// /// 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)); + Task>> ListWithHttpMessagesAsync(string accountName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Lists the jobs, if any, associated with the specified Data Lake /// Analytics account. The response includes a link to the next page of @@ -236,6 +236,6 @@ public partial interface IJobOperations /// /// Thrown when a required parameter is null /// - Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IPipelineOperations.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IPipelineOperations.cs index 0274140cffbb..8a9c2e31b937 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IPipelineOperations.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IPipelineOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IRecurrenceOperations.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IRecurrenceOperations.cs index 45c23b8034f1..e72d9022302c 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IRecurrenceOperations.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IRecurrenceOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IStorageAccountsOperations.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IStorageAccountsOperations.cs index 8e2180f7d8c8..758c9414b73a 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IStorageAccountsOperations.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IStorageAccountsOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -26,20 +26,23 @@ namespace Microsoft.Azure.Management.DataLake.Analytics public partial interface IStorageAccountsOperations { /// - /// Gets the specified Azure Storage account linked to the given Data - /// Lake Analytics account. + /// Updates the specified Data Lake Analytics account to add an Azure + /// Storage account. /// /// /// The name of the Azure resource group that contains the Data Lake /// Analytics account. /// /// - /// The name of the Data Lake Analytics account from which to retrieve - /// Azure storage account details. + /// The name of the Data Lake Analytics account to which to add the + /// Azure Storage account. /// /// - /// The name of the Azure Storage account for which to retrieve the - /// details. + /// The name of the Azure Storage account to add + /// + /// + /// The parameters containing the access key and optional suffix for + /// the Azure Storage Account. /// /// /// The headers that will be added to request. @@ -50,27 +53,28 @@ public partial interface IStorageAccountsOperations /// /// 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)); + Task AddWithHttpMessagesAsync(string resourceGroupName, string accountName, string storageAccountName, AddStorageAccountParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Updates the specified Data Lake Analytics account to remove an - /// Azure Storage account. + /// Updates the Data Lake Analytics account to replace Azure Storage + /// blob account details, such as the access key and/or suffix. /// /// /// The name of the Azure resource group that contains the Data Lake /// Analytics account. /// /// - /// The name of the Data Lake Analytics account from which to remove - /// the Azure Storage account. + /// The name of the Data Lake Analytics account to modify storage + /// accounts in /// /// - /// The name of the Azure Storage account to remove + /// The Azure Storage account to modify + /// + /// + /// The parameters containing the access key and suffix to update the + /// storage account with, if any. Passing nothing results in no change. /// /// /// The headers that will be added to request. @@ -84,25 +88,21 @@ public partial interface IStorageAccountsOperations /// /// Thrown when a required parameter is null /// - Task DeleteWithHttpMessagesAsync(string resourceGroupName, string accountName, string storageAccountName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task UpdateWithHttpMessagesAsync(string resourceGroupName, string accountName, string storageAccountName, UpdateStorageAccountParameters parameters = default(UpdateStorageAccountParameters), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Updates the Data Lake Analytics account to replace Azure Storage - /// blob account details, such as the access key and/or suffix. + /// Updates the specified Data Lake Analytics account to remove an + /// Azure Storage account. /// /// /// The name of the Azure resource group that contains the Data Lake /// Analytics account. /// /// - /// The name of the Data Lake Analytics account to modify storage - /// accounts in + /// The name of the Data Lake Analytics account from which to remove + /// the Azure Storage account. /// /// - /// The Azure Storage account to modify - /// - /// - /// The parameters containing the access key and suffix to update the - /// storage account with, if any. Passing nothing results in no change. + /// The name of the Azure Storage account to remove /// /// /// The headers that will be added to request. @@ -116,25 +116,22 @@ public partial interface IStorageAccountsOperations /// /// 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)); + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string accountName, string storageAccountName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Updates the specified Data Lake Analytics account to add an Azure - /// Storage account. + /// Gets the specified Azure Storage account linked to the given Data + /// Lake Analytics account. /// /// /// The name of the Azure resource group that contains the Data Lake /// Analytics account. /// /// - /// The name of the Data Lake Analytics account to which to add the - /// Azure Storage account. + /// The name of the Data Lake Analytics account from which to retrieve + /// Azure storage account details. /// /// - /// The name of the Azure Storage account to add - /// - /// - /// The parameters containing the access key and optional suffix for - /// the Azure Storage Account. + /// The name of the Azure Storage account for which to retrieve the + /// details. /// /// /// The headers that will be added to request. @@ -145,10 +142,13 @@ public partial interface IStorageAccountsOperations /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// - Task AddWithHttpMessagesAsync(string resourceGroupName, string accountName, string storageAccountName, AddStorageAccountParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string accountName, string storageAccountName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets the specified Azure Storage container associated with the /// given Data Lake Analytics and Azure Storage accounts. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/JobOperations.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/JobOperations.cs index e0782f7fb647..91016c93eff9 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/JobOperations.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/JobOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -467,7 +467,7 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> BuildWithHttpMessagesAsync(string accountName, JobInformation parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BuildWithHttpMessagesAsync(string accountName, BuildJobParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (accountName == null) { @@ -814,13 +814,16 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) } /// - /// Gets the job information for the specified job ID. + /// Submits a job to the specified Data Lake Analytics account. /// /// /// The Azure Data Lake Analytics account to execute job operations on. /// /// - /// JobInfo ID. + /// The job ID (a GUID) for the job being submitted. + /// + /// + /// The parameters to submit a job. /// /// /// Headers that will be added to request. @@ -843,7 +846,7 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string accountName, System.Guid jobIdentity, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateWithHttpMessagesAsync(string accountName, System.Guid jobIdentity, CreateJobParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (accountName == null) { @@ -853,6 +856,14 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.AdlaJobDnsSuffix"); } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); + } if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); @@ -866,8 +877,9 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("accountName", accountName); tracingParameters.Add("jobIdentity", jobIdentity); + tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Create", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri; @@ -887,7 +899,7 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.Method = new HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -918,6 +930,12 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient 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) { @@ -1006,16 +1024,13 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) } /// - /// Submits a job to the specified Data Lake Analytics account. + /// Gets the job information for the specified job ID. /// /// /// The Azure Data Lake Analytics account to execute job operations on. /// /// - /// The job ID (a GUID) for the job being submitted. - /// - /// - /// The parameters to submit a job. + /// JobInfo ID. /// /// /// Headers that will be added to request. @@ -1038,7 +1053,7 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CreateWithHttpMessagesAsync(string accountName, System.Guid jobIdentity, JobInformation parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string accountName, System.Guid jobIdentity, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (accountName == null) { @@ -1048,14 +1063,6 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.AdlaJobDnsSuffix"); } - if (parameters == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); - } - if (parameters != null) - { - parameters.Validate(); - } if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); @@ -1069,9 +1076,8 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("accountName", accountName); tracingParameters.Add("jobIdentity", jobIdentity); - tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Create", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri; @@ -1091,7 +1097,7 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PUT"); + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1122,12 +1128,6 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient 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) { @@ -1255,7 +1255,7 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListWithHttpMessagesAsync(string accountName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListWithHttpMessagesAsync(string accountName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (accountName == null) { @@ -1402,7 +1402,7 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient 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")) @@ -1415,7 +1415,7 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient 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) { @@ -1462,7 +1462,7 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { @@ -1576,7 +1576,7 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient 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")) @@ -1589,7 +1589,7 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/JobOperationsExtensions.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/JobOperationsExtensions.cs index 5d9c510da971..de2f63d11696 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/JobOperationsExtensions.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/JobOperationsExtensions.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -116,7 +116,7 @@ public static JobDataPath GetDebugDataPath(this IJobOperations operations, strin /// /// The parameters to build a job. /// - public static JobInformation Build(this IJobOperations operations, string accountName, JobInformation parameters) + public static JobInformation Build(this IJobOperations operations, string accountName, BuildJobParameters parameters) { return operations.BuildAsync(accountName, parameters).GetAwaiter().GetResult(); } @@ -137,7 +137,7 @@ public static JobInformation Build(this IJobOperations operations, string accoun /// /// The cancellation token. /// - public static async Task BuildAsync(this IJobOperations operations, string accountName, JobInformation parameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task BuildAsync(this IJobOperations operations, string accountName, BuildJobParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.BuildWithHttpMessagesAsync(accountName, parameters, null, cancellationToken).ConfigureAwait(false)) { @@ -183,7 +183,7 @@ public static void Cancel(this IJobOperations operations, string accountName, Sy } /// - /// Gets the job information for the specified job ID. + /// Submits a job to the specified Data Lake Analytics account. /// /// /// The operations group for this extension method. @@ -192,15 +192,18 @@ public static void Cancel(this IJobOperations operations, string accountName, Sy /// The Azure Data Lake Analytics account to execute job operations on. /// /// - /// JobInfo ID. + /// The job ID (a GUID) for the job being submitted. /// - public static JobInformation Get(this IJobOperations operations, string accountName, System.Guid jobIdentity) + /// + /// The parameters to submit a job. + /// + public static JobInformation Create(this IJobOperations operations, string accountName, System.Guid jobIdentity, CreateJobParameters parameters) { - return operations.GetAsync(accountName, jobIdentity).GetAwaiter().GetResult(); + return operations.CreateAsync(accountName, jobIdentity, parameters).GetAwaiter().GetResult(); } /// - /// Gets the job information for the specified job ID. + /// Submits a job to the specified Data Lake Analytics account. /// /// /// The operations group for this extension method. @@ -209,21 +212,24 @@ public static JobInformation Get(this IJobOperations operations, string accountN /// The Azure Data Lake Analytics account to execute job operations on. /// /// - /// JobInfo ID. + /// The job ID (a GUID) for the job being submitted. + /// + /// + /// The parameters to submit a job. /// /// /// The cancellation token. /// - public static async Task GetAsync(this IJobOperations operations, string accountName, System.Guid jobIdentity, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateAsync(this IJobOperations operations, string accountName, System.Guid jobIdentity, CreateJobParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetWithHttpMessagesAsync(accountName, jobIdentity, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateWithHttpMessagesAsync(accountName, jobIdentity, parameters, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Submits a job to the specified Data Lake Analytics account. + /// Gets the job information for the specified job ID. /// /// /// The operations group for this extension method. @@ -232,18 +238,15 @@ public static JobInformation Get(this IJobOperations operations, string accountN /// The Azure Data Lake Analytics account to execute job operations on. /// /// - /// The job ID (a GUID) for the job being submitted. - /// - /// - /// The parameters to submit a job. + /// JobInfo ID. /// - public static JobInformation Create(this IJobOperations operations, string accountName, System.Guid jobIdentity, JobInformation parameters) + public static JobInformation Get(this IJobOperations operations, string accountName, System.Guid jobIdentity) { - return operations.CreateAsync(accountName, jobIdentity, parameters).GetAwaiter().GetResult(); + return operations.GetAsync(accountName, jobIdentity).GetAwaiter().GetResult(); } /// - /// Submits a job to the specified Data Lake Analytics account. + /// Gets the job information for the specified job ID. /// /// /// The operations group for this extension method. @@ -252,17 +255,14 @@ public static JobInformation Create(this IJobOperations operations, string accou /// The Azure Data Lake Analytics account to execute job operations on. /// /// - /// The job ID (a GUID) for the job being submitted. - /// - /// - /// The parameters to submit a job. + /// JobInfo ID. /// /// /// The cancellation token. /// - public static async Task CreateAsync(this IJobOperations operations, string accountName, System.Guid jobIdentity, JobInformation parameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAsync(this IJobOperations operations, string accountName, System.Guid jobIdentity, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateWithHttpMessagesAsync(accountName, jobIdentity, parameters, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetWithHttpMessagesAsync(accountName, jobIdentity, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -290,7 +290,7 @@ public static JobInformation Create(this IJobOperations operations, string accou /// resources included with the resources in the response, e.g. /// Categories?$count=true. Optional. /// - public static IPage List(this IJobOperations operations, string accountName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?)) + public static IPage List(this IJobOperations operations, string accountName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?)) { return ((IJobOperations)operations).ListAsync(accountName, odataQuery, select, count).GetAwaiter().GetResult(); } @@ -320,7 +320,7 @@ public static JobInformation Create(this IJobOperations operations, string accou /// /// The cancellation token. /// - public static async Task> ListAsync(this IJobOperations operations, string accountName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListAsync(this IJobOperations operations, string accountName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ListWithHttpMessagesAsync(accountName, odataQuery, select, count, null, cancellationToken).ConfigureAwait(false)) { @@ -338,7 +338,7 @@ public static JobInformation Create(this IJobOperations operations, string accou /// /// The NextLink from the previous successful call to List operation. /// - public static IPage ListNext(this IJobOperations operations, string nextPageLink) + public static IPage ListNext(this IJobOperations operations, string nextPageLink) { return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); } @@ -356,7 +356,7 @@ public static IPage ListNext(this IJobOperations operations, str /// /// The cancellation token. /// - public static async Task> ListNextAsync(this IJobOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListNextAsync(this IJobOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) { diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/AADObjectType.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/AADObjectType.cs index b74ac7d051de..0c43096da057 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/AADObjectType.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/AADObjectType.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/AddDataLakeStoreParameters.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/AddDataLakeStoreParameters.cs index 4841496ae68a..86b6bb26c11f 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/AddDataLakeStoreParameters.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/AddDataLakeStoreParameters.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/AddStorageAccountParameters.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/AddStorageAccountParameters.cs index 02c27296f265..060d256a7221 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/AddStorageAccountParameters.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/AddStorageAccountParameters.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/BaseJobParameters.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/BaseJobParameters.cs new file mode 100644 index 000000000000..1445ab175791 --- /dev/null +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/BaseJobParameters.cs @@ -0,0 +1,81 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.DataLake.Analytics.Models +{ + 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; + + /// + /// Data Lake Analytics Job Parameters base class for build and submit. + /// + public partial class BaseJobParameters + { + /// + /// Initializes a new instance of the BaseJobParameters class. + /// + public BaseJobParameters() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the BaseJobParameters class. + /// + /// the job type of the current job (Hive or USql). + /// Possible values include: 'USql', 'Hive' + /// the job specific properties. + public BaseJobParameters(JobType type, CreateJobProperties properties) + { + Type = type; + Properties = properties; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the job type of the current job (Hive or USql). + /// Possible values include: 'USql', 'Hive' + /// + [JsonProperty(PropertyName = "type")] + public JobType Type { get; set; } + + /// + /// Gets or sets the job specific properties. + /// + [JsonProperty(PropertyName = "properties")] + public CreateJobProperties Properties { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Properties == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Properties"); + } + if (Properties != null) + { + Properties.Validate(); + } + } + } +} diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/BuildJobParameters.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/BuildJobParameters.cs new file mode 100644 index 000000000000..2f3906b0cf25 --- /dev/null +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/BuildJobParameters.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.2.2.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.DataLake.Analytics.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; + using Newtonsoft.Json; + using System.Linq; + + /// + /// The parameters used to build a new Data Lake Analytics job. + /// + public partial class BuildJobParameters : BaseJobParameters + { + /// + /// Initializes a new instance of the BuildJobParameters class. + /// + public BuildJobParameters() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the BuildJobParameters class. + /// + /// the job type of the current job (Hive or USql). + /// Possible values include: 'USql', 'Hive' + /// the job specific properties. + /// the friendly name of the job to build. + public BuildJobParameters(JobType type, CreateJobProperties properties, string name = default(string)) + : base(type, properties) + { + Name = name; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the friendly name of the job to build. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public override void Validate() + { + base.Validate(); + } + } +} diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/CatalogItem.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/CatalogItem.cs index df309801a262..e3c73cce9364 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/CatalogItem.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/CatalogItem.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/CatalogItemList.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/CatalogItemList.cs index f4a4aecde88a..fe00a2c8d0f4 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/CatalogItemList.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/CatalogItemList.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/CompileMode.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/CompileMode.cs index d309835ab4ff..ace2ef2f5403 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/CompileMode.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/CompileMode.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -30,4 +30,37 @@ public enum CompileMode [EnumMember(Value = "SingleBox")] SingleBox } + internal static class CompileModeEnumExtension + { + internal static string ToSerializedValue(this CompileMode? value) => + value == null ? null : ((CompileMode)value).ToSerializedValue(); + + internal static string ToSerializedValue(this CompileMode value) + { + switch( value ) + { + case CompileMode.Semantic: + return "Semantic"; + case CompileMode.Full: + return "Full"; + case CompileMode.SingleBox: + return "SingleBox"; + } + return null; + } + + internal static CompileMode? ParseCompileMode(this string value) + { + switch( value ) + { + case "Semantic": + return CompileMode.Semantic; + case "Full": + return CompileMode.Full; + case "SingleBox": + return CompileMode.SingleBox; + } + return null; + } + } } diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/ComputePolicy.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/ComputePolicy.cs index 5d2bc5a4d452..b40a0bbbb0dd 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/ComputePolicy.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/ComputePolicy.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/ComputePolicyAccountCreateParameters.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/ComputePolicyAccountCreateParameters.cs index 0fc46d739ee0..21c2fd65650e 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/ComputePolicyAccountCreateParameters.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/ComputePolicyAccountCreateParameters.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/ComputePolicyCreateOrUpdateParameters.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/ComputePolicyCreateOrUpdateParameters.cs index 5fdd6d37030d..aaf374bc8912 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/ComputePolicyCreateOrUpdateParameters.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/ComputePolicyCreateOrUpdateParameters.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/CreateJobParameters.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/CreateJobParameters.cs new file mode 100644 index 000000000000..8a61389b7e35 --- /dev/null +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/CreateJobParameters.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.2.2.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.DataLake.Analytics.Models +{ + 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.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// The parameters used to submit a new Data Lake Analytics job. + /// + public partial class CreateJobParameters : BaseJobParameters + { + /// + /// Initializes a new instance of the CreateJobParameters class. + /// + public CreateJobParameters() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the CreateJobParameters class. + /// + /// the job type of the current job (Hive or USql). + /// Possible values include: 'USql', 'Hive' + /// the job specific properties. + /// the friendly name of the job to submit. + /// the degree of parallelism to use + /// for this job. This must be greater than 0, if set to less than 0 it + /// will default to 1. + /// the priority value to use for the current + /// job. Lower numbers have a higher priority. By default, a job has a + /// priority of 1000. This must be greater than 0. + /// the list of log file name patterns to + /// find in the logFolder. '*' is the only matching character allowed. + /// Example format: jobExecution*.log or *mylog*.txt + /// the recurring job relationship information + /// properties. + public CreateJobParameters(JobType type, CreateJobProperties properties, string name, int? degreeOfParallelism = default(int?), int? priority = default(int?), IList logFilePatterns = default(IList), JobRelationshipProperties related = default(JobRelationshipProperties)) + : base(type, properties) + { + Name = name; + DegreeOfParallelism = degreeOfParallelism; + Priority = priority; + LogFilePatterns = logFilePatterns; + Related = related; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the friendly name of the job to submit. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// Gets or sets the degree of parallelism to use for this job. This + /// must be greater than 0, if set to less than 0 it will default to 1. + /// + [JsonProperty(PropertyName = "degreeOfParallelism")] + public int? DegreeOfParallelism { get; set; } + + /// + /// Gets or sets the priority value to use for the current job. Lower + /// numbers have a higher priority. By default, a job has a priority of + /// 1000. This must be greater than 0. + /// + [JsonProperty(PropertyName = "priority")] + public int? Priority { get; set; } + + /// + /// Gets or sets the list of log file name patterns to find in the + /// logFolder. '*' is the only matching character allowed. Example + /// format: jobExecution*.log or *mylog*.txt + /// + [JsonProperty(PropertyName = "logFilePatterns")] + public IList LogFilePatterns { get; set; } + + /// + /// Gets or sets the recurring job relationship information properties. + /// + [JsonProperty(PropertyName = "related")] + public JobRelationshipProperties Related { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public override void Validate() + { + base.Validate(); + if (Name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Name"); + } + if (Related != null) + { + Related.Validate(); + } + } + } +} diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/CreateJobProperties.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/CreateJobProperties.cs new file mode 100644 index 000000000000..8e0bcabbda6d --- /dev/null +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/CreateJobProperties.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.2.2.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.DataLake.Analytics.Models +{ + 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; + + /// + /// The common Data Lake Analytics job properties for job submission. + /// + public partial class CreateJobProperties + { + /// + /// Initializes a new instance of the CreateJobProperties class. + /// + public CreateJobProperties() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the CreateJobProperties class. + /// + /// the script to run + /// the runtime version of the Data Lake + /// Analytics engine to use for the specific type of job being + /// run. + public CreateJobProperties(string script, string runtimeVersion = default(string)) + { + 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. + /// + [JsonProperty(PropertyName = "runtimeVersion")] + public string RuntimeVersion { get; set; } + + /// + /// Gets or sets the script to run + /// + [JsonProperty(PropertyName = "script")] + public string Script { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Script == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Script"); + } + } + } +} diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/CreateUSqlJobProperties.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/CreateUSqlJobProperties.cs new file mode 100644 index 000000000000..69584ccc2a69 --- /dev/null +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/CreateUSqlJobProperties.cs @@ -0,0 +1,76 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.DataLake.Analytics.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; + using Newtonsoft.Json; + using System.Linq; + + /// + /// U-SQL job properties used when submitting U-SQL jobs. + /// + [Newtonsoft.Json.JsonObject("USql")] + public partial class CreateUSqlJobProperties : CreateJobProperties + { + /// + /// Initializes a new instance of the CreateUSqlJobProperties class. + /// + public CreateUSqlJobProperties() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the CreateUSqlJobProperties class. + /// + /// the script to run + /// the runtime version of the Data Lake + /// Analytics engine to use for the specific type of job being + /// run. + /// Optionally enforces a specific + /// compilation mode for the job during execution. If this is not + /// specified during submission, the server will determine the optimal + /// compilation mode. Possible values include: 'Semantic', 'Full', + /// 'SingleBox' + public CreateUSqlJobProperties(string script, string runtimeVersion = default(string), CompileMode? compileMode = default(CompileMode?)) + : base(script, runtimeVersion) + { + CompileMode = compileMode; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets optionally enforces a specific compilation mode for + /// the job during execution. If this is not specified during + /// submission, the server will determine the optimal compilation mode. + /// Possible values include: 'Semantic', 'Full', 'SingleBox' + /// + [JsonProperty(PropertyName = "compileMode")] + public CompileMode? CompileMode { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public override void Validate() + { + base.Validate(); + } + } +} diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccount.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccount.cs index 0b5020eed429..162fa318cfa3 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccount.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccount.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -53,6 +53,13 @@ public DataLakeAnalyticsAccount() /// 'Resuming', 'Deleting', 'Deleted' /// the state of the Data Lake Analytics account. /// Possible values include: 'Active', 'Suspended' + /// the account creation time. + /// the account last modified + /// time. + /// the full CName endpoint for this + /// account. + /// The unique identifier associated with this + /// Data Lake Analytics account. /// the maximum supported degree /// of parallelism for this account. /// the number of days that job @@ -69,11 +76,6 @@ public DataLakeAnalyticsAccount() /// the account. /// the list of Azure Blob storage /// accounts associated with this account. - /// the account creation time. - /// the account last modified - /// time. - /// the full CName endpoint for this - /// account. /// the commitment tier for the next month. /// Possible values include: 'Consumption', 'Commitment_100AUHours', /// 'Commitment_500AUHours', 'Commitment_1000AUHours', @@ -101,11 +103,15 @@ public DataLakeAnalyticsAccount() /// job for this account. /// the list of compute policies to /// create in this account. - public DataLakeAnalyticsAccount(string location, string defaultDataLakeStoreAccount, IList dataLakeStoreAccounts, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), DataLakeAnalyticsAccountStatus? provisioningState = default(DataLakeAnalyticsAccountStatus?), DataLakeAnalyticsAccountState? state = default(DataLakeAnalyticsAccountState?), int? maxDegreeOfParallelism = default(int?), int? queryStoreRetention = default(int?), int? maxJobCount = default(int?), int? systemMaxDegreeOfParallelism = default(int?), int? systemMaxJobCount = default(int?), IList storageAccounts = default(IList), System.DateTime? creationTime = default(System.DateTime?), System.DateTime? lastModifiedTime = default(System.DateTime?), string endpoint = default(string), TierType? newTier = default(TierType?), TierType? currentTier = default(TierType?), FirewallState? firewallState = default(FirewallState?), FirewallAllowAzureIpsState? firewallAllowAzureIps = default(FirewallAllowAzureIpsState?), IList firewallRules = default(IList), int? maxDegreeOfParallelismPerJob = default(int?), int? minPriorityPerJob = default(int?), IList computePolicies = default(IList)) + public DataLakeAnalyticsAccount(string location, string defaultDataLakeStoreAccount, IList dataLakeStoreAccounts, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), DataLakeAnalyticsAccountStatus? provisioningState = default(DataLakeAnalyticsAccountStatus?), DataLakeAnalyticsAccountState? state = default(DataLakeAnalyticsAccountState?), System.DateTime? creationTime = default(System.DateTime?), System.DateTime? lastModifiedTime = default(System.DateTime?), string endpoint = default(string), System.Guid? accountId = default(System.Guid?), int? maxDegreeOfParallelism = default(int?), int? queryStoreRetention = default(int?), int? maxJobCount = default(int?), int? systemMaxDegreeOfParallelism = default(int?), int? systemMaxJobCount = default(int?), IList storageAccounts = default(IList), TierType? newTier = default(TierType?), TierType? currentTier = default(TierType?), FirewallState? firewallState = default(FirewallState?), FirewallAllowAzureIpsState? firewallAllowAzureIps = default(FirewallAllowAzureIpsState?), IList firewallRules = default(IList), int? maxDegreeOfParallelismPerJob = default(int?), int? minPriorityPerJob = default(int?), IList computePolicies = default(IList)) : base(location, id, name, type, tags) { ProvisioningState = provisioningState; State = state; + CreationTime = creationTime; + LastModifiedTime = lastModifiedTime; + Endpoint = endpoint; + AccountId = accountId; DefaultDataLakeStoreAccount = defaultDataLakeStoreAccount; MaxDegreeOfParallelism = maxDegreeOfParallelism; QueryStoreRetention = queryStoreRetention; @@ -114,9 +120,6 @@ public DataLakeAnalyticsAccount() SystemMaxJobCount = systemMaxJobCount; DataLakeStoreAccounts = dataLakeStoreAccounts; StorageAccounts = storageAccounts; - CreationTime = creationTime; - LastModifiedTime = lastModifiedTime; - Endpoint = endpoint; NewTier = newTier; CurrentTier = currentTier; FirewallState = firewallState; @@ -149,6 +152,31 @@ public DataLakeAnalyticsAccount() [JsonProperty(PropertyName = "properties.state")] public DataLakeAnalyticsAccountState? State { get; private set; } + /// + /// Gets the account creation time. + /// + [JsonProperty(PropertyName = "properties.creationTime")] + public System.DateTime? CreationTime { get; private set; } + + /// + /// Gets the account last modified time. + /// + [JsonProperty(PropertyName = "properties.lastModifiedTime")] + public System.DateTime? LastModifiedTime { get; private set; } + + /// + /// Gets the full CName endpoint for this account. + /// + [JsonProperty(PropertyName = "properties.endpoint")] + public string Endpoint { get; private set; } + + /// + /// Gets the unique identifier associated with this Data Lake Analytics + /// account. + /// + [JsonProperty(PropertyName = "properties.accountId")] + public System.Guid? AccountId { get; private set; } + /// /// Gets or sets the default data lake storage account associated with /// this Data Lake Analytics account. @@ -206,24 +234,6 @@ public DataLakeAnalyticsAccount() [JsonProperty(PropertyName = "properties.storageAccounts")] public IList StorageAccounts { get; set; } - /// - /// Gets the account creation time. - /// - [JsonProperty(PropertyName = "properties.creationTime")] - public System.DateTime? CreationTime { get; private set; } - - /// - /// Gets the account last modified time. - /// - [JsonProperty(PropertyName = "properties.lastModifiedTime")] - public System.DateTime? LastModifiedTime { get; private set; } - - /// - /// Gets the full CName endpoint for this account. - /// - [JsonProperty(PropertyName = "properties.endpoint")] - public string Endpoint { get; private set; } - /// /// Gets or sets the commitment tier for the next month. Possible /// values include: 'Consumption', 'Commitment_100AUHours', diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccountBasic.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccountBasic.cs new file mode 100644 index 000000000000..f943078c84a7 --- /dev/null +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccountBasic.cs @@ -0,0 +1,129 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.DataLake.Analytics.Models +{ + 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 System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// A Data Lake Analytics account object, containing all information + /// associated with the named Data Lake Analytics account. + /// + [Rest.Serialization.JsonTransformation] + public partial class DataLakeAnalyticsAccountBasic : Resource + { + /// + /// Initializes a new instance of the DataLakeAnalyticsAccountBasic + /// class. + /// + public DataLakeAnalyticsAccountBasic() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the DataLakeAnalyticsAccountBasic + /// class. + /// + /// Resource location + /// Resource Id + /// Resource name + /// Resource type + /// Resource tags + /// the provisioning status of the Data + /// Lake Analytics account. Possible values include: 'Failed', + /// 'Creating', 'Running', 'Succeeded', 'Patching', 'Suspending', + /// 'Resuming', 'Deleting', 'Deleted' + /// the state of the Data Lake Analytics account. + /// Possible values include: 'Active', 'Suspended' + /// the account creation time. + /// the account last modified + /// time. + /// the full CName endpoint for this + /// account. + /// The unique identifier associated with this + /// Data Lake Analytics account. + public DataLakeAnalyticsAccountBasic(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), DataLakeAnalyticsAccountStatus? provisioningState = default(DataLakeAnalyticsAccountStatus?), DataLakeAnalyticsAccountState? state = default(DataLakeAnalyticsAccountState?), System.DateTime? creationTime = default(System.DateTime?), System.DateTime? lastModifiedTime = default(System.DateTime?), string endpoint = default(string), System.Guid? accountId = default(System.Guid?)) + : base(location, id, name, type, tags) + { + ProvisioningState = provisioningState; + State = state; + CreationTime = creationTime; + LastModifiedTime = lastModifiedTime; + Endpoint = endpoint; + AccountId = accountId; + 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', + /// 'Succeeded', 'Patching', 'Suspending', 'Resuming', 'Deleting', + /// 'Deleted' + /// + [JsonProperty(PropertyName = "properties.provisioningState")] + 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; private set; } + + /// + /// Gets the account creation time. + /// + [JsonProperty(PropertyName = "properties.creationTime")] + public System.DateTime? CreationTime { get; private set; } + + /// + /// Gets the account last modified time. + /// + [JsonProperty(PropertyName = "properties.lastModifiedTime")] + public System.DateTime? LastModifiedTime { get; private set; } + + /// + /// Gets the full CName endpoint for this account. + /// + [JsonProperty(PropertyName = "properties.endpoint")] + public string Endpoint { get; private set; } + + /// + /// Gets the unique identifier associated with this Data Lake Analytics + /// account. + /// + [JsonProperty(PropertyName = "properties.accountId")] + public System.Guid? AccountId { get; private set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public override void Validate() + { + base.Validate(); + } + } +} diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccountPropertiesBasic.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccountPropertiesBasic.cs new file mode 100644 index 000000000000..d4a2110a16f4 --- /dev/null +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccountPropertiesBasic.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.2.2.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.DataLake.Analytics.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; + using Newtonsoft.Json; + using System.Linq; + + /// + /// The basic account specific properties that are associated with an + /// underlying Data Lake Analytics account. + /// + public partial class DataLakeAnalyticsAccountPropertiesBasic + { + /// + /// Initializes a new instance of the + /// DataLakeAnalyticsAccountPropertiesBasic class. + /// + public DataLakeAnalyticsAccountPropertiesBasic() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// DataLakeAnalyticsAccountPropertiesBasic class. + /// + /// the provisioning status of the Data + /// Lake Analytics account. Possible values include: 'Failed', + /// 'Creating', 'Running', 'Succeeded', 'Patching', 'Suspending', + /// 'Resuming', 'Deleting', 'Deleted' + /// the state of the Data Lake Analytics account. + /// Possible values include: 'Active', 'Suspended' + /// the account creation time. + /// the account last modified + /// time. + /// the full CName endpoint for this + /// account. + /// The unique identifier associated with this + /// Data Lake Analytics account. + public DataLakeAnalyticsAccountPropertiesBasic(DataLakeAnalyticsAccountStatus? provisioningState = default(DataLakeAnalyticsAccountStatus?), DataLakeAnalyticsAccountState? state = default(DataLakeAnalyticsAccountState?), System.DateTime? creationTime = default(System.DateTime?), System.DateTime? lastModifiedTime = default(System.DateTime?), string endpoint = default(string), System.Guid? accountId = default(System.Guid?)) + { + ProvisioningState = provisioningState; + State = state; + CreationTime = creationTime; + LastModifiedTime = lastModifiedTime; + Endpoint = endpoint; + AccountId = accountId; + 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', + /// 'Succeeded', 'Patching', 'Suspending', 'Resuming', 'Deleting', + /// 'Deleted' + /// + [JsonProperty(PropertyName = "provisioningState")] + public DataLakeAnalyticsAccountStatus? ProvisioningState { get; private set; } + + /// + /// Gets the state of the Data Lake Analytics account. Possible values + /// include: 'Active', 'Suspended' + /// + [JsonProperty(PropertyName = "state")] + public DataLakeAnalyticsAccountState? State { get; private set; } + + /// + /// Gets the account creation time. + /// + [JsonProperty(PropertyName = "creationTime")] + public System.DateTime? CreationTime { get; private set; } + + /// + /// Gets the account last modified time. + /// + [JsonProperty(PropertyName = "lastModifiedTime")] + public System.DateTime? LastModifiedTime { get; private set; } + + /// + /// Gets the full CName endpoint for this account. + /// + [JsonProperty(PropertyName = "endpoint")] + public string Endpoint { get; private set; } + + /// + /// Gets the unique identifier associated with this Data Lake Analytics + /// account. + /// + [JsonProperty(PropertyName = "accountId")] + public System.Guid? AccountId { get; private set; } + + } +} diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccountState.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccountState.cs index 45a11746a91d..179a4c4805f6 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccountState.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccountState.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -28,4 +28,33 @@ public enum DataLakeAnalyticsAccountState [EnumMember(Value = "Suspended")] Suspended } + internal static class DataLakeAnalyticsAccountStateEnumExtension + { + internal static string ToSerializedValue(this DataLakeAnalyticsAccountState? value) => + value == null ? null : ((DataLakeAnalyticsAccountState)value).ToSerializedValue(); + + internal static string ToSerializedValue(this DataLakeAnalyticsAccountState value) + { + switch( value ) + { + case DataLakeAnalyticsAccountState.Active: + return "Active"; + case DataLakeAnalyticsAccountState.Suspended: + return "Suspended"; + } + return null; + } + + internal static DataLakeAnalyticsAccountState? ParseDataLakeAnalyticsAccountState(this string value) + { + switch( value ) + { + case "Active": + return DataLakeAnalyticsAccountState.Active; + case "Suspended": + return DataLakeAnalyticsAccountState.Suspended; + } + return null; + } + } } diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccountStatus.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccountStatus.cs index bfe10f239508..3052ed364c25 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccountStatus.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccountStatus.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -42,4 +42,61 @@ public enum DataLakeAnalyticsAccountStatus [EnumMember(Value = "Deleted")] Deleted } + internal static class DataLakeAnalyticsAccountStatusEnumExtension + { + internal static string ToSerializedValue(this DataLakeAnalyticsAccountStatus? value) => + value == null ? null : ((DataLakeAnalyticsAccountStatus)value).ToSerializedValue(); + + internal static string ToSerializedValue(this DataLakeAnalyticsAccountStatus value) + { + switch( value ) + { + case DataLakeAnalyticsAccountStatus.Failed: + return "Failed"; + case DataLakeAnalyticsAccountStatus.Creating: + return "Creating"; + case DataLakeAnalyticsAccountStatus.Running: + return "Running"; + case DataLakeAnalyticsAccountStatus.Succeeded: + return "Succeeded"; + case DataLakeAnalyticsAccountStatus.Patching: + return "Patching"; + case DataLakeAnalyticsAccountStatus.Suspending: + return "Suspending"; + case DataLakeAnalyticsAccountStatus.Resuming: + return "Resuming"; + case DataLakeAnalyticsAccountStatus.Deleting: + return "Deleting"; + case DataLakeAnalyticsAccountStatus.Deleted: + return "Deleted"; + } + return null; + } + + internal static DataLakeAnalyticsAccountStatus? ParseDataLakeAnalyticsAccountStatus(this string value) + { + switch( value ) + { + case "Failed": + return DataLakeAnalyticsAccountStatus.Failed; + case "Creating": + return DataLakeAnalyticsAccountStatus.Creating; + case "Running": + return DataLakeAnalyticsAccountStatus.Running; + case "Succeeded": + return DataLakeAnalyticsAccountStatus.Succeeded; + case "Patching": + return DataLakeAnalyticsAccountStatus.Patching; + case "Suspending": + return DataLakeAnalyticsAccountStatus.Suspending; + case "Resuming": + return DataLakeAnalyticsAccountStatus.Resuming; + case "Deleting": + return DataLakeAnalyticsAccountStatus.Deleting; + case "Deleted": + return DataLakeAnalyticsAccountStatus.Deleted; + } + return null; + } + } } diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccountUpdateParameters.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccountUpdateParameters.cs index 086471b15afd..511eff85fe5b 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccountUpdateParameters.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccountUpdateParameters.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogCredentialCreateParameters.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogCredentialCreateParameters.cs index d6455be43dc3..b99cca78403c 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogCredentialCreateParameters.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogCredentialCreateParameters.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogCredentialDeleteParameters.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogCredentialDeleteParameters.cs index c8c7a45ab28c..aabb55a037b8 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogCredentialDeleteParameters.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogCredentialDeleteParameters.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogCredentialUpdateParameters.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogCredentialUpdateParameters.cs index b8dfa2492cb0..5104db14081e 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogCredentialUpdateParameters.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogCredentialUpdateParameters.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogSecretCreateOrUpdateParameters.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogSecretCreateOrUpdateParameters.cs index 578fc8a1ead4..906e93c5ad24 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogSecretCreateOrUpdateParameters.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogSecretCreateOrUpdateParameters.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeStoreAccountInfo.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeStoreAccountInfo.cs index f5da8fab189b..21b371591f46 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeStoreAccountInfo.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeStoreAccountInfo.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DdlName.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DdlName.cs index a28c12f540ab..96f3efb1aa2b 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DdlName.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DdlName.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/Diagnostics.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/Diagnostics.cs index 16253698532b..c79c60610c89 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/Diagnostics.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/Diagnostics.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/EntityId.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/EntityId.cs index 6bf84a2f1f33..6c1b00975a0e 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/EntityId.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/EntityId.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/ExternalTable.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/ExternalTable.cs index 939d2911e68e..8ad9d9aecb5b 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/ExternalTable.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/ExternalTable.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/FileType.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/FileType.cs index b03683f3e489..917cd350cbaa 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/FileType.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/FileType.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/FirewallAllowAzureIpsState.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/FirewallAllowAzureIpsState.cs index 646e70206961..361a0af0ff1e 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/FirewallAllowAzureIpsState.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/FirewallAllowAzureIpsState.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -28,4 +28,33 @@ public enum FirewallAllowAzureIpsState [EnumMember(Value = "Disabled")] Disabled } + internal static class FirewallAllowAzureIpsStateEnumExtension + { + internal static string ToSerializedValue(this FirewallAllowAzureIpsState? value) => + value == null ? null : ((FirewallAllowAzureIpsState)value).ToSerializedValue(); + + internal static string ToSerializedValue(this FirewallAllowAzureIpsState value) + { + switch( value ) + { + case FirewallAllowAzureIpsState.Enabled: + return "Enabled"; + case FirewallAllowAzureIpsState.Disabled: + return "Disabled"; + } + return null; + } + + internal static FirewallAllowAzureIpsState? ParseFirewallAllowAzureIpsState(this string value) + { + switch( value ) + { + case "Enabled": + return FirewallAllowAzureIpsState.Enabled; + case "Disabled": + return FirewallAllowAzureIpsState.Disabled; + } + return null; + } + } } diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/FirewallRule.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/FirewallRule.cs index ed06446316f0..68fa404d4dcb 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/FirewallRule.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/FirewallRule.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/FirewallState.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/FirewallState.cs index 8f3d9ee5584f..6dd8f9d401dd 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/FirewallState.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/FirewallState.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -28,4 +28,33 @@ public enum FirewallState [EnumMember(Value = "Disabled")] Disabled } + internal static class FirewallStateEnumExtension + { + internal static string ToSerializedValue(this FirewallState? value) => + value == null ? null : ((FirewallState)value).ToSerializedValue(); + + internal static string ToSerializedValue(this FirewallState value) + { + switch( value ) + { + case FirewallState.Enabled: + return "Enabled"; + case FirewallState.Disabled: + return "Disabled"; + } + return null; + } + + internal static FirewallState? ParseFirewallState(this string value) + { + switch( value ) + { + case "Enabled": + return FirewallState.Enabled; + case "Disabled": + return FirewallState.Disabled; + } + return null; + } + } } diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/HiveJobProperties.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/HiveJobProperties.cs index 5e75effc257a..7fdf3b6dc85b 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/HiveJobProperties.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/HiveJobProperties.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -16,7 +16,7 @@ namespace Microsoft.Azure.Management.DataLake.Analytics.Models using System.Linq; /// - /// Hive job properties used when submitting and retrieving Hive jobs. + /// Hive job properties used when retrieving Hive jobs. /// [Newtonsoft.Json.JsonObject("Hive")] public partial class HiveJobProperties : JobProperties diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobDataPath.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobDataPath.cs index 65916ff6fe51..c6ec0739e0da 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobDataPath.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobDataPath.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobErrorDetails.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobErrorDetails.cs index c60435094c11..9a6315952686 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobErrorDetails.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobErrorDetails.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobInformation.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobInformation.cs index 8aaaaad84c32..f41f6c296ee2 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobInformation.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobInformation.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -19,9 +19,10 @@ namespace Microsoft.Azure.Management.DataLake.Analytics.Models using System.Linq; /// - /// The common Data Lake Analytics job information properties. + /// The extended Data Lake Analytics job information properties returned + /// when retrieving a specific job. /// - public partial class JobInformation + public partial class JobInformation : JobInformationBasic { /// /// Initializes a new instance of the JobInformation class. @@ -41,8 +42,6 @@ public JobInformation() /// the job's unique identifier (a GUID). /// the user or account that submitted the /// job. - /// the error message details for the job, - /// if the job failed. /// the degree of parallelism used /// for this job. This must be greater than 0, if set to less than 0 it /// will default to 1. @@ -67,30 +66,19 @@ public JobInformation() /// the list of log file name patterns to /// find in the logFolder. '*' is the only matching character allowed. /// Example format: jobExecution*.log or *mylog*.txt + /// the recurring job relationship information + /// properties. + /// the error message details for the job, + /// if the job failed. /// the job state audit records, /// indicating when various operations have been performed on this /// job. - /// the recurring job relationship information - /// properties. - public JobInformation(string name, JobType type, JobProperties properties, System.Guid? jobId = default(System.Guid?), string submitter = default(string), IList errorMessage = default(IList), int? degreeOfParallelism = default(int?), int? priority = default(int?), System.DateTimeOffset? submitTime = default(System.DateTimeOffset?), System.DateTimeOffset? startTime = default(System.DateTimeOffset?), System.DateTimeOffset? endTime = default(System.DateTimeOffset?), JobState? state = default(JobState?), JobResult? result = default(JobResult?), string logFolder = default(string), IList logFilePatterns = default(IList), IList stateAuditRecords = default(IList), JobRelationshipProperties related = default(JobRelationshipProperties)) + public JobInformation(string name, JobType type, JobProperties properties, System.Guid? jobId = default(System.Guid?), string submitter = default(string), int? degreeOfParallelism = default(int?), int? priority = default(int?), System.DateTimeOffset? submitTime = default(System.DateTimeOffset?), System.DateTimeOffset? startTime = default(System.DateTimeOffset?), System.DateTimeOffset? endTime = default(System.DateTimeOffset?), JobState? state = default(JobState?), JobResult? result = default(JobResult?), string logFolder = default(string), IList logFilePatterns = default(IList), JobRelationshipProperties related = default(JobRelationshipProperties), IList errorMessage = default(IList), IList stateAuditRecords = default(IList)) + : base(name, type, jobId, submitter, degreeOfParallelism, priority, submitTime, startTime, endTime, state, result, logFolder, logFilePatterns, related) { - JobId = jobId; - Name = name; - Type = type; - Submitter = submitter; ErrorMessage = errorMessage; - DegreeOfParallelism = degreeOfParallelism; - Priority = priority; - SubmitTime = submitTime; - StartTime = startTime; - EndTime = endTime; - State = state; - Result = result; - LogFolder = logFolder; - LogFilePatterns = logFilePatterns; StateAuditRecords = stateAuditRecords; Properties = properties; - Related = related; CustomInit(); } @@ -99,102 +87,12 @@ public JobInformation() /// partial void CustomInit(); - /// - /// Gets the job's unique identifier (a GUID). - /// - [JsonProperty(PropertyName = "jobId")] - public System.Guid? JobId { get; private set; } - - /// - /// Gets or sets the friendly name of the job. - /// - [JsonProperty(PropertyName = "name")] - public string Name { get; set; } - - /// - /// Gets or sets the job type of the current job (Hive or USql). - /// Possible values include: 'USql', 'Hive' - /// - [JsonProperty(PropertyName = "type")] - public JobType Type { get; set; } - - /// - /// Gets the user or account that submitted the job. - /// - [JsonProperty(PropertyName = "submitter")] - 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; private set; } - /// - /// Gets or sets the degree of parallelism used for this job. This must - /// be greater than 0, if set to less than 0 it will default to 1. - /// - [JsonProperty(PropertyName = "degreeOfParallelism")] - public int? DegreeOfParallelism { get; set; } - - /// - /// Gets or sets the priority value for the current job. Lower numbers - /// have a higher priority. By default, a job has a priority of 1000. - /// This must be greater than 0. - /// - [JsonProperty(PropertyName = "priority")] - public int? Priority { get; set; } - - /// - /// Gets the time the job was submitted to the service. - /// - [JsonProperty(PropertyName = "submitTime")] - public System.DateTimeOffset? SubmitTime { get; private set; } - - /// - /// Gets the start time of the job. - /// - [JsonProperty(PropertyName = "startTime")] - public System.DateTimeOffset? StartTime { get; private set; } - - /// - /// Gets the completion time of the job. - /// - [JsonProperty(PropertyName = "endTime")] - public System.DateTimeOffset? EndTime { get; private set; } - - /// - /// Gets the job state. When the job is in the Ended state, refer to - /// Result and ErrorMessage for details. Possible values include: - /// 'Accepted', 'Compiling', 'Ended', 'New', 'Queued', 'Running', - /// 'Scheduling', 'Starting', 'Paused', 'WaitingForCapacity' - /// - [JsonProperty(PropertyName = "state")] - public JobState? State { get; private set; } - - /// - /// Gets the result of job execution or the current result of the - /// running job. Possible values include: 'None', 'Succeeded', - /// 'Cancelled', 'Failed' - /// - [JsonProperty(PropertyName = "result")] - 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; private set; } - - /// - /// Gets or sets the list of log file name patterns to find in the - /// logFolder. '*' is the only matching character allowed. Example - /// format: jobExecution*.log or *mylog*.txt - /// - [JsonProperty(PropertyName = "logFilePatterns")] - public IList LogFilePatterns { get; set; } - /// /// Gets the job state audit records, indicating when various /// operations have been performed on this job. @@ -208,24 +106,15 @@ public JobInformation() [JsonProperty(PropertyName = "properties")] public JobProperties Properties { get; set; } - /// - /// Gets or sets the recurring job relationship information properties. - /// - [JsonProperty(PropertyName = "related")] - public JobRelationshipProperties Related { get; set; } - /// /// Validate the object. /// /// /// Thrown if validation fails /// - public virtual void Validate() + public override void Validate() { - if (Name == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "Name"); - } + base.Validate(); if (Properties == null) { throw new ValidationException(ValidationRules.CannotBeNull, "Properties"); @@ -234,10 +123,6 @@ public virtual void Validate() { Properties.Validate(); } - if (Related != null) - { - Related.Validate(); - } } } } diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobInformationBasic.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobInformationBasic.cs new file mode 100644 index 000000000000..8fd021fc37fa --- /dev/null +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobInformationBasic.cs @@ -0,0 +1,207 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.DataLake.Analytics.Models +{ + 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.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// The common Data Lake Analytics job information properties. + /// + public partial class JobInformationBasic + { + /// + /// Initializes a new instance of the JobInformationBasic class. + /// + public JobInformationBasic() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the JobInformationBasic class. + /// + /// the friendly name of the job. + /// the job type of the current job (Hive or USql). + /// Possible values include: 'USql', 'Hive' + /// the job's unique identifier (a GUID). + /// the user or account that submitted the + /// job. + /// the degree of parallelism used + /// for this job. This must be greater than 0, if set to less than 0 it + /// will default to 1. + /// the priority value for the current job. + /// Lower numbers have a higher priority. By default, a job has a + /// priority of 1000. This must be greater than 0. + /// the time the job was submitted to the + /// service. + /// the start time of the job. + /// the completion time of the job. + /// the job state. When the job is in the Ended + /// state, refer to Result and ErrorMessage for details. Possible + /// values include: 'Accepted', 'Compiling', 'Ended', 'New', 'Queued', + /// 'Running', 'Scheduling', 'Starting', 'Paused', + /// 'WaitingForCapacity' + /// the result of job execution or the current + /// result of the running job. Possible values include: 'None', + /// 'Succeeded', 'Cancelled', 'Failed' + /// the log folder path to use in the following + /// format: + /// adl://<accountName>.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/03/13/17/18/5fe51957-93bc-4de0-8ddc-c5a4753b068b/logs/. + /// the list of log file name patterns to + /// find in the logFolder. '*' is the only matching character allowed. + /// Example format: jobExecution*.log or *mylog*.txt + /// the recurring job relationship information + /// properties. + public JobInformationBasic(string name, JobType type, System.Guid? jobId = default(System.Guid?), string submitter = default(string), int? degreeOfParallelism = default(int?), int? priority = default(int?), System.DateTimeOffset? submitTime = default(System.DateTimeOffset?), System.DateTimeOffset? startTime = default(System.DateTimeOffset?), System.DateTimeOffset? endTime = default(System.DateTimeOffset?), JobState? state = default(JobState?), JobResult? result = default(JobResult?), string logFolder = default(string), IList logFilePatterns = default(IList), JobRelationshipProperties related = default(JobRelationshipProperties)) + { + JobId = jobId; + Name = name; + Type = type; + Submitter = submitter; + DegreeOfParallelism = degreeOfParallelism; + Priority = priority; + SubmitTime = submitTime; + StartTime = startTime; + EndTime = endTime; + State = state; + Result = result; + LogFolder = logFolder; + LogFilePatterns = logFilePatterns; + Related = related; + 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; private set; } + + /// + /// Gets or sets the friendly name of the job. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// Gets or sets the job type of the current job (Hive or USql). + /// Possible values include: 'USql', 'Hive' + /// + [JsonProperty(PropertyName = "type")] + public JobType Type { get; set; } + + /// + /// Gets the user or account that submitted the job. + /// + [JsonProperty(PropertyName = "submitter")] + public string Submitter { get; private set; } + + /// + /// Gets or sets the degree of parallelism used for this job. This must + /// be greater than 0, if set to less than 0 it will default to 1. + /// + [JsonProperty(PropertyName = "degreeOfParallelism")] + public int? DegreeOfParallelism { get; set; } + + /// + /// Gets or sets the priority value for the current job. Lower numbers + /// have a higher priority. By default, a job has a priority of 1000. + /// This must be greater than 0. + /// + [JsonProperty(PropertyName = "priority")] + public int? Priority { get; set; } + + /// + /// Gets the time the job was submitted to the service. + /// + [JsonProperty(PropertyName = "submitTime")] + public System.DateTimeOffset? SubmitTime { get; private set; } + + /// + /// Gets the start time of the job. + /// + [JsonProperty(PropertyName = "startTime")] + public System.DateTimeOffset? StartTime { get; private set; } + + /// + /// Gets the completion time of the job. + /// + [JsonProperty(PropertyName = "endTime")] + public System.DateTimeOffset? EndTime { get; private set; } + + /// + /// Gets the job state. When the job is in the Ended state, refer to + /// Result and ErrorMessage for details. Possible values include: + /// 'Accepted', 'Compiling', 'Ended', 'New', 'Queued', 'Running', + /// 'Scheduling', 'Starting', 'Paused', 'WaitingForCapacity' + /// + [JsonProperty(PropertyName = "state")] + public JobState? State { get; private set; } + + /// + /// Gets the result of job execution or the current result of the + /// running job. Possible values include: 'None', 'Succeeded', + /// 'Cancelled', 'Failed' + /// + [JsonProperty(PropertyName = "result")] + 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; private set; } + + /// + /// Gets or sets the list of log file name patterns to find in the + /// logFolder. '*' is the only matching character allowed. Example + /// format: jobExecution*.log or *mylog*.txt + /// + [JsonProperty(PropertyName = "logFilePatterns")] + public IList LogFilePatterns { get; set; } + + /// + /// Gets or sets the recurring job relationship information properties. + /// + [JsonProperty(PropertyName = "related")] + public JobRelationshipProperties Related { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Name"); + } + if (Related != null) + { + Related.Validate(); + } + } + } +} diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobInnerError.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobInnerError.cs index 6e42cda102e1..9417ad11764f 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobInnerError.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobInnerError.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobPipelineInformation.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobPipelineInformation.cs index c7220e23d075..1f467fa7f921 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobPipelineInformation.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobPipelineInformation.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobPipelineRunInformation.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobPipelineRunInformation.cs index cf00831f6ad7..da86e759dcb1 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobPipelineRunInformation.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobPipelineRunInformation.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobProperties.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobProperties.cs index 970064c9e8c8..25a288dbf503 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobProperties.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobProperties.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobRecurrenceInformation.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobRecurrenceInformation.cs index bbd5b0870226..37ef958801b9 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobRecurrenceInformation.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobRecurrenceInformation.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobRelationshipProperties.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobRelationshipProperties.cs index a5666a6a21da..a2efb61b6b9a 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobRelationshipProperties.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobRelationshipProperties.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobResource.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobResource.cs index 7750884a2334..e6063f43e874 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobResource.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobResource.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobResourceType.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobResourceType.cs index b5518b8521d1..8b60c64962a3 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobResourceType.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobResourceType.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -36,4 +36,49 @@ public enum JobResourceType [EnumMember(Value = "StatisticsResourceInUserFolder")] StatisticsResourceInUserFolder } + internal static class JobResourceTypeEnumExtension + { + internal static string ToSerializedValue(this JobResourceType? value) => + value == null ? null : ((JobResourceType)value).ToSerializedValue(); + + internal static string ToSerializedValue(this JobResourceType value) + { + switch( value ) + { + case JobResourceType.VertexResource: + return "VertexResource"; + case JobResourceType.JobManagerResource: + return "JobManagerResource"; + case JobResourceType.StatisticsResource: + return "StatisticsResource"; + case JobResourceType.VertexResourceInUserFolder: + return "VertexResourceInUserFolder"; + case JobResourceType.JobManagerResourceInUserFolder: + return "JobManagerResourceInUserFolder"; + case JobResourceType.StatisticsResourceInUserFolder: + return "StatisticsResourceInUserFolder"; + } + return null; + } + + internal static JobResourceType? ParseJobResourceType(this string value) + { + switch( value ) + { + case "VertexResource": + return JobResourceType.VertexResource; + case "JobManagerResource": + return JobResourceType.JobManagerResource; + case "StatisticsResource": + return JobResourceType.StatisticsResource; + case "VertexResourceInUserFolder": + return JobResourceType.VertexResourceInUserFolder; + case "JobManagerResourceInUserFolder": + return JobResourceType.JobManagerResourceInUserFolder; + case "StatisticsResourceInUserFolder": + return JobResourceType.StatisticsResourceInUserFolder; + } + return null; + } + } } diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobResult.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobResult.cs index a7d99714ba2c..0ed09ebfe97f 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobResult.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobResult.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -32,4 +32,41 @@ public enum JobResult [EnumMember(Value = "Failed")] Failed } + internal static class JobResultEnumExtension + { + internal static string ToSerializedValue(this JobResult? value) => + value == null ? null : ((JobResult)value).ToSerializedValue(); + + internal static string ToSerializedValue(this JobResult value) + { + switch( value ) + { + case JobResult.None: + return "None"; + case JobResult.Succeeded: + return "Succeeded"; + case JobResult.Cancelled: + return "Cancelled"; + case JobResult.Failed: + return "Failed"; + } + return null; + } + + internal static JobResult? ParseJobResult(this string value) + { + switch( value ) + { + case "None": + return JobResult.None; + case "Succeeded": + return JobResult.Succeeded; + case "Cancelled": + return JobResult.Cancelled; + case "Failed": + return JobResult.Failed; + } + return null; + } + } } diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobState.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobState.cs index e79d0679a587..c8d50cfccc2d 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobState.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobState.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -44,4 +44,65 @@ public enum JobState [EnumMember(Value = "WaitingForCapacity")] WaitingForCapacity } + internal static class JobStateEnumExtension + { + internal static string ToSerializedValue(this JobState? value) => + value == null ? null : ((JobState)value).ToSerializedValue(); + + internal static string ToSerializedValue(this JobState value) + { + switch( value ) + { + case JobState.Accepted: + return "Accepted"; + case JobState.Compiling: + return "Compiling"; + case JobState.Ended: + return "Ended"; + case JobState.New: + return "New"; + case JobState.Queued: + return "Queued"; + case JobState.Running: + return "Running"; + case JobState.Scheduling: + return "Scheduling"; + case JobState.Starting: + return "Starting"; + case JobState.Paused: + return "Paused"; + case JobState.WaitingForCapacity: + return "WaitingForCapacity"; + } + return null; + } + + internal static JobState? ParseJobState(this string value) + { + switch( value ) + { + case "Accepted": + return JobState.Accepted; + case "Compiling": + return JobState.Compiling; + case "Ended": + return JobState.Ended; + case "New": + return JobState.New; + case "Queued": + return JobState.Queued; + case "Running": + return JobState.Running; + case "Scheduling": + return JobState.Scheduling; + case "Starting": + return JobState.Starting; + case "Paused": + return JobState.Paused; + case "WaitingForCapacity": + return JobState.WaitingForCapacity; + } + return null; + } + } } diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobStateAuditRecord.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobStateAuditRecord.cs index a91324ef8f75..04b62a6b4ee6 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobStateAuditRecord.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobStateAuditRecord.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -37,7 +37,7 @@ public JobStateAuditRecord() /// place. /// the user who requests the /// change. - /// the details of the audit log. + /// the details of the audit log. public JobStateAuditRecord(string newState = default(string), System.DateTimeOffset? timeStamp = default(System.DateTimeOffset?), string requestedByUser = default(string), string details = default(string)) { NewState = newState; @@ -71,7 +71,7 @@ public JobStateAuditRecord() public string RequestedByUser { get; private set; } /// - /// Gets the details of the audit log. + /// Gets the details of the audit log. /// [JsonProperty(PropertyName = "details")] public string Details { get; private set; } diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobStatistics.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobStatistics.cs index 0bd1909a4c46..e8a8c3c71cc1 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobStatistics.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobStatistics.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobStatisticsVertexStage.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobStatisticsVertexStage.cs index e70764207051..b13a0152fcd1 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobStatisticsVertexStage.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobStatisticsVertexStage.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobType.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobType.cs index 934a146450aa..d7a250e84e6d 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobType.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobType.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -28,4 +28,33 @@ public enum JobType [EnumMember(Value = "Hive")] Hive } + internal static class JobTypeEnumExtension + { + internal static string ToSerializedValue(this JobType? value) => + value == null ? null : ((JobType)value).ToSerializedValue(); + + internal static string ToSerializedValue(this JobType value) + { + switch( value ) + { + case JobType.USql: + return "USql"; + case JobType.Hive: + return "Hive"; + } + return null; + } + + internal static JobType? ParseJobType(this string value) + { + switch( value ) + { + case "USql": + return JobType.USql; + case "Hive": + return JobType.Hive; + } + return null; + } + } } diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/OptionalSubResource.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/OptionalSubResource.cs index c758ec3e17ef..6a10cb602ae3 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/OptionalSubResource.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/OptionalSubResource.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/Page.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/Page.cs index 9e0084270613..4d02345351d3 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/Page.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/Page.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/Resource.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/Resource.cs index 7df8ddb14812..c14cd02b9491 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/Resource.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/Resource.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/SasTokenInfo.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/SasTokenInfo.cs index ddfeaed9fe17..b9b69c8cd0d0 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/SasTokenInfo.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/SasTokenInfo.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/SeverityTypes.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/SeverityTypes.cs index 4e374df94a5c..ec515bf359df 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/SeverityTypes.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/SeverityTypes.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -36,4 +36,49 @@ public enum SeverityTypes [EnumMember(Value = "UserWarning")] UserWarning } + internal static class SeverityTypesEnumExtension + { + internal static string ToSerializedValue(this SeverityTypes? value) => + value == null ? null : ((SeverityTypes)value).ToSerializedValue(); + + internal static string ToSerializedValue(this SeverityTypes value) + { + switch( value ) + { + case SeverityTypes.Warning: + return "Warning"; + case SeverityTypes.Error: + return "Error"; + case SeverityTypes.Info: + return "Info"; + case SeverityTypes.SevereWarning: + return "SevereWarning"; + case SeverityTypes.Deprecated: + return "Deprecated"; + case SeverityTypes.UserWarning: + return "UserWarning"; + } + return null; + } + + internal static SeverityTypes? ParseSeverityTypes(this string value) + { + switch( value ) + { + case "Warning": + return SeverityTypes.Warning; + case "Error": + return SeverityTypes.Error; + case "Info": + return SeverityTypes.Info; + case "SevereWarning": + return SeverityTypes.SevereWarning; + case "Deprecated": + return SeverityTypes.Deprecated; + case "UserWarning": + return SeverityTypes.UserWarning; + } + return null; + } + } } diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/StorageAccountInfo.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/StorageAccountInfo.cs index 7a322730dbe1..eb27a428745a 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/StorageAccountInfo.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/StorageAccountInfo.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/StorageContainer.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/StorageContainer.cs index 91066fd9d0ec..0b293436fbea 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/StorageContainer.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/StorageContainer.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -34,16 +34,16 @@ public StorageContainer() /// /// Initializes a new instance of the StorageContainer class. /// - /// the name of the blob container. /// the unique identifier of the blob /// container. + /// the name of the blob container. /// the type of the blob container. /// the last modified time of the blob /// container. - public StorageContainer(string name = default(string), string id = default(string), string type = default(string), System.DateTime? lastModifiedTime = default(System.DateTime?)) + public StorageContainer(string id = default(string), string name = default(string), string type = default(string), System.DateTime? lastModifiedTime = default(System.DateTime?)) { - Name = name; Id = id; + Name = name; Type = type; LastModifiedTime = lastModifiedTime; CustomInit(); @@ -54,18 +54,18 @@ public StorageContainer() /// partial void CustomInit(); - /// - /// Gets the name of the blob container. - /// - [JsonProperty(PropertyName = "name")] - public string Name { get; private set; } - /// /// Gets the unique identifier of the blob container. /// [JsonProperty(PropertyName = "id")] public string Id { get; private set; } + /// + /// Gets the name of the blob container. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; private set; } + /// /// Gets the type of the blob container. /// diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/SubResource.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/SubResource.cs index f1f52db6b5df..8bcc04fccc89 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/SubResource.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/SubResource.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/TierType.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/TierType.cs index 5f67f09ed580..fa3dc57e4ccf 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/TierType.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/TierType.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -42,4 +42,61 @@ public enum TierType [EnumMember(Value = "Commitment_500000AUHours")] Commitment500000AUHours } + internal static class TierTypeEnumExtension + { + internal static string ToSerializedValue(this TierType? value) => + value == null ? null : ((TierType)value).ToSerializedValue(); + + internal static string ToSerializedValue(this TierType value) + { + switch( value ) + { + case TierType.Consumption: + return "Consumption"; + case TierType.Commitment100AUHours: + return "Commitment_100AUHours"; + case TierType.Commitment500AUHours: + return "Commitment_500AUHours"; + case TierType.Commitment1000AUHours: + return "Commitment_1000AUHours"; + case TierType.Commitment5000AUHours: + return "Commitment_5000AUHours"; + case TierType.Commitment10000AUHours: + return "Commitment_10000AUHours"; + case TierType.Commitment50000AUHours: + return "Commitment_50000AUHours"; + case TierType.Commitment100000AUHours: + return "Commitment_100000AUHours"; + case TierType.Commitment500000AUHours: + return "Commitment_500000AUHours"; + } + return null; + } + + internal static TierType? ParseTierType(this string value) + { + switch( value ) + { + case "Consumption": + return TierType.Consumption; + case "Commitment_100AUHours": + return TierType.Commitment100AUHours; + case "Commitment_500AUHours": + return TierType.Commitment500AUHours; + case "Commitment_1000AUHours": + return TierType.Commitment1000AUHours; + case "Commitment_5000AUHours": + return TierType.Commitment5000AUHours; + case "Commitment_10000AUHours": + return TierType.Commitment10000AUHours; + case "Commitment_50000AUHours": + return TierType.Commitment50000AUHours; + case "Commitment_100000AUHours": + return TierType.Commitment100000AUHours; + case "Commitment_500000AUHours": + return TierType.Commitment500000AUHours; + } + return null; + } + } } diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/TypeFieldInfo.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/TypeFieldInfo.cs index 37cb5940d8e0..bb4bcfb2ea09 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/TypeFieldInfo.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/TypeFieldInfo.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlAssembly.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlAssembly.cs index a975b9139989..1d7967f41863 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlAssembly.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlAssembly.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlAssemblyClr.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlAssemblyClr.cs index 0bd1ee88d256..70f003a5c755 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlAssemblyClr.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlAssemblyClr.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlAssemblyDependencyInfo.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlAssemblyDependencyInfo.cs index 7c02e58a295a..935475ba2823 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlAssemblyDependencyInfo.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlAssemblyDependencyInfo.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlAssemblyFileInfo.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlAssemblyFileInfo.cs index f5ea68ff39a7..21ef0fb1cb89 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlAssemblyFileInfo.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlAssemblyFileInfo.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlCredential.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlCredential.cs index d84949e41924..241f9d0a56fc 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlCredential.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlCredential.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlDatabase.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlDatabase.cs index cae1a124254c..876cb5a5da11 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlDatabase.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlDatabase.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlDirectedColumn.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlDirectedColumn.cs index c0d942807c44..dc136c6cd097 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlDirectedColumn.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlDirectedColumn.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlDistributionInfo.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlDistributionInfo.cs index 52381c40cd58..7a1735b462fc 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlDistributionInfo.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlDistributionInfo.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlExternalDataSource.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlExternalDataSource.cs index 1c5c07dc6f85..cf757a75d765 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlExternalDataSource.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlExternalDataSource.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlIndex.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlIndex.cs index 1dc9afab9d6a..9374645c504a 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlIndex.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlIndex.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlJobProperties.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlJobProperties.cs index 7fd7b91fd8e8..8cf2d09b9964 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlJobProperties.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlJobProperties.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -18,7 +18,7 @@ namespace Microsoft.Azure.Management.DataLake.Analytics.Models using System.Linq; /// - /// U-SQL job properties used when submitting and retrieving U-SQL jobs. + /// U-SQL job properties used when retrieving U-SQL jobs. /// [Newtonsoft.Json.JsonObject("USql")] public partial class USqlJobProperties : JobProperties @@ -67,11 +67,10 @@ public USqlJobProperties() /// the timestamp (in ticks) for /// the yarn application executing the job. This value should not be /// set by the user and will be ignored if it is. - /// Optionally enforces a specific - /// compilation mode for the job during execution. If this is not - /// specified during submission, the server will determine the optimal - /// compilation mode. Possible values include: 'Semantic', 'Full', - /// 'SingleBox' + /// the specific compilation mode for the job + /// used during execution. If this is not specified during submission, + /// the server will determine the optimal compilation mode. Possible + /// values include: 'Semantic', 'Full', 'SingleBox' public USqlJobProperties(string script, string runtimeVersion = default(string), IList resources = default(IList), JobStatistics statistics = default(JobStatistics), JobDataPath debugData = default(JobDataPath), IList diagnostics = default(IList), string algebraFilePath = default(string), System.TimeSpan? totalCompilationTime = default(System.TimeSpan?), System.TimeSpan? totalPauseTime = default(System.TimeSpan?), System.TimeSpan? totalQueuedTime = default(System.TimeSpan?), System.TimeSpan? totalRunningTime = default(System.TimeSpan?), string rootProcessNodeId = default(string), string yarnApplicationId = default(string), long? yarnApplicationTimeStamp = default(long?), CompileMode? compileMode = default(CompileMode?)) : base(script, runtimeVersion) { @@ -97,28 +96,28 @@ public USqlJobProperties() partial void CustomInit(); /// - /// Gets or sets the list of resources that are required by the job + /// Gets the list of resources that are required by the job /// [JsonProperty(PropertyName = "resources")] - public IList Resources { get; set; } + public IList Resources { get; private set; } /// - /// Gets or sets the job specific statistics. + /// Gets the job specific statistics. /// [JsonProperty(PropertyName = "statistics")] - public JobStatistics Statistics { get; set; } + public JobStatistics Statistics { get; private set; } /// - /// Gets or sets the job specific debug data locations. + /// Gets the job specific debug data locations. /// [JsonProperty(PropertyName = "debugData")] - public JobDataPath DebugData { get; set; } + public JobDataPath DebugData { get; private set; } /// - /// Gets or sets the diagnostics for the job. + /// Gets the diagnostics for the job. /// [JsonProperty(PropertyName = "diagnostics")] - public IList Diagnostics { get; set; } + public IList Diagnostics { get; private set; } /// /// Gets the algebra file path after the job has completed @@ -179,13 +178,13 @@ public USqlJobProperties() public long? YarnApplicationTimeStamp { get; private set; } /// - /// Gets or sets optionally enforces a specific compilation mode for - /// the job during execution. If this is not specified during - /// submission, the server will determine the optimal compilation mode. - /// Possible values include: 'Semantic', 'Full', 'SingleBox' + /// Gets the specific compilation mode for the job used during + /// execution. If this is not specified during submission, the server + /// will determine the optimal compilation mode. Possible values + /// include: 'Semantic', 'Full', 'SingleBox' /// [JsonProperty(PropertyName = "compileMode")] - public CompileMode? CompileMode { get; set; } + public CompileMode? CompileMode { get; private set; } /// /// Validate the object. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlPackage.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlPackage.cs index 0e33ac6ca136..fe0436923ea5 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlPackage.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlPackage.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlProcedure.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlProcedure.cs index a112f6e23bbb..d564c6853b58 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlProcedure.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlProcedure.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlSchema.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlSchema.cs index 8e71f6a42f1c..fa707d79fee4 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlSchema.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlSchema.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlSecret.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlSecret.cs index d18bfa1a4617..ac484b2c584f 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlSecret.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlSecret.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlTable.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlTable.cs index 4019abc241de..f52293d659e3 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlTable.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlTable.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlTableColumn.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlTableColumn.cs index ac5e3cb6e14b..72a012f8de84 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlTableColumn.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlTableColumn.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlTablePartition.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlTablePartition.cs index 4a3dfa7451b3..261ae13aea29 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlTablePartition.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlTablePartition.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlTableStatistics.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlTableStatistics.cs index 5309b6b59cf4..9b7f0f092c58 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlTableStatistics.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlTableStatistics.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlTableType.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlTableType.cs index f38a4beb5bb5..11808d3e3835 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlTableType.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlTableType.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlTableValuedFunction.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlTableValuedFunction.cs index 4a9c057e37bd..48a78edd5d59 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlTableValuedFunction.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlTableValuedFunction.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlType.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlType.cs index ab60f0aca603..a46fd52260af 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlType.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlType.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlView.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlView.cs index 59aefd244685..d55759a03dd0 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlView.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlView.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/UpdateFirewallRuleParameters.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/UpdateFirewallRuleParameters.cs index 509a6004b73e..71795052a4f7 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/UpdateFirewallRuleParameters.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/UpdateFirewallRuleParameters.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/UpdateStorageAccountParameters.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/UpdateStorageAccountParameters.cs index 92f52a531c4f..bdb99c07775b 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/UpdateStorageAccountParameters.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/UpdateStorageAccountParameters.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/PipelineOperations.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/PipelineOperations.cs index a942b5d9c8aa..0b1f401a5b4e 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/PipelineOperations.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/PipelineOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/PipelineOperationsExtensions.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/PipelineOperationsExtensions.cs index 49939909760b..454a917e196d 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/PipelineOperationsExtensions.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/PipelineOperationsExtensions.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/RecurrenceOperations.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/RecurrenceOperations.cs index 8af050a013e2..13aa3a8b338b 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/RecurrenceOperations.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/RecurrenceOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/RecurrenceOperationsExtensions.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/RecurrenceOperationsExtensions.cs index a0fffcfb9020..26f208a30255 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/RecurrenceOperationsExtensions.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/RecurrenceOperationsExtensions.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/StorageAccountsOperations.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/StorageAccountsOperations.cs index 568d2c009524..8b22dcfbb0b0 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/StorageAccountsOperations.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/StorageAccountsOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -53,19 +53,23 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie public DataLakeAnalyticsAccountManagementClient Client { get; private set; } /// - /// Gets the specified Azure Storage account linked to the given Data Lake - /// Analytics account. + /// Updates the specified Data Lake Analytics account to add an Azure Storage + /// account. /// /// /// The name of the Azure resource group that contains the Data Lake Analytics /// account. /// /// - /// The name of the Data Lake Analytics account from which to retrieve Azure - /// storage account details. + /// The name of the Data Lake Analytics account to which to add the Azure + /// Storage account. /// /// - /// The name of the Azure Storage account for which to retrieve the details. + /// The name of the Azure Storage account to add + /// + /// + /// The parameters containing the access key and optional suffix for the Azure + /// Storage Account. /// /// /// Headers that will be added to request. @@ -76,9 +80,6 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// @@ -88,7 +89,7 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string accountName, string storageAccountName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task AddWithHttpMessagesAsync(string resourceGroupName, string accountName, string storageAccountName, AddStorageAccountParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -102,6 +103,14 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "storageAccountName"); } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); + } if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); @@ -120,8 +129,9 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("accountName", accountName); tracingParameters.Add("storageAccountName", storageAccountName); + tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Add", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; @@ -142,7 +152,7 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.Method = new HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -173,6 +183,12 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie // 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) { @@ -228,31 +244,13 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie 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); @@ -261,19 +259,22 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie } /// - /// Updates the specified Data Lake Analytics account to remove an Azure - /// Storage account. + /// Updates the Data Lake Analytics account to replace Azure Storage blob + /// account details, such as the access key and/or suffix. /// /// /// The name of the Azure resource group that contains the Data Lake Analytics /// account. /// /// - /// The name of the Data Lake Analytics account from which to remove the Azure - /// Storage account. + /// The name of the Data Lake Analytics account to modify storage accounts in /// /// - /// The name of the Azure Storage account to remove + /// The Azure Storage account to modify + /// + /// + /// The parameters containing the access key and suffix to update the storage + /// account with, if any. Passing nothing results in no change. /// /// /// Headers that will be added to request. @@ -293,7 +294,7 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie /// /// A response object containing the response body and response headers. /// - public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string accountName, string storageAccountName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task UpdateWithHttpMessagesAsync(string resourceGroupName, string accountName, string storageAccountName, UpdateStorageAccountParameters parameters = default(UpdateStorageAccountParameters), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -325,8 +326,9 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("accountName", accountName); tracingParameters.Add("storageAccountName", storageAccountName); + tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Update", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; @@ -347,7 +349,7 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("DELETE"); + _httpRequest.Method = new HttpMethod("PATCH"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -378,6 +380,12 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie // 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) { @@ -448,22 +456,19 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie } /// - /// Updates the Data Lake Analytics account to replace Azure Storage blob - /// account details, such as the access key and/or suffix. + /// Updates the specified Data Lake Analytics account to remove an Azure + /// Storage account. /// /// /// The name of the Azure resource group that contains the Data Lake Analytics /// account. /// /// - /// The name of the Data Lake Analytics account to modify storage accounts in + /// The name of the Data Lake Analytics account from which to remove the Azure + /// Storage account. /// /// - /// The Azure Storage account to modify - /// - /// - /// The parameters containing the access key and suffix to update the storage - /// account with, if any. Passing nothing results in no change. + /// The name of the Azure Storage account to remove /// /// /// Headers that will be added to request. @@ -483,7 +488,7 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie /// /// A response object containing the response body and response headers. /// - public async Task UpdateWithHttpMessagesAsync(string resourceGroupName, string accountName, string storageAccountName, UpdateStorageAccountParameters parameters = default(UpdateStorageAccountParameters), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string accountName, string storageAccountName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -515,9 +520,8 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("accountName", accountName); tracingParameters.Add("storageAccountName", storageAccountName); - tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Update", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; @@ -538,7 +542,7 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PATCH"); + _httpRequest.Method = new HttpMethod("DELETE"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -569,12 +573,6 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie // 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) { @@ -645,23 +643,19 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie } /// - /// Updates the specified Data Lake Analytics account to add an Azure Storage - /// account. + /// Gets the specified Azure Storage account linked to the given Data Lake + /// Analytics account. /// /// /// The name of the Azure resource group that contains the Data Lake Analytics /// account. /// /// - /// The name of the Data Lake Analytics account to which to add the Azure - /// Storage account. + /// The name of the Data Lake Analytics account from which to retrieve Azure + /// storage account details. /// /// - /// The name of the Azure Storage account to add - /// - /// - /// The parameters containing the access key and optional suffix for the Azure - /// Storage Account. + /// The name of the Azure Storage account for which to retrieve the details. /// /// /// Headers that will be added to request. @@ -672,6 +666,9 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// @@ -681,7 +678,7 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie /// /// A response object containing the response body and response headers. /// - public async Task AddWithHttpMessagesAsync(string resourceGroupName, string accountName, string storageAccountName, AddStorageAccountParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string accountName, string storageAccountName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -695,14 +692,6 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "storageAccountName"); } - if (parameters == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); - } - if (parameters != null) - { - parameters.Validate(); - } if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); @@ -721,9 +710,8 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("accountName", accountName); tracingParameters.Add("storageAccountName", storageAccountName); - tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Add", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; @@ -744,7 +732,7 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PUT"); + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -775,12 +763,6 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie // 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) { @@ -836,13 +818,31 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie 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); diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/StorageAccountsOperationsExtensions.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/StorageAccountsOperationsExtensions.cs index 89d9024272b4..d071a49000f1 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/StorageAccountsOperationsExtensions.cs +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/StorageAccountsOperationsExtensions.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -24,8 +24,8 @@ namespace Microsoft.Azure.Management.DataLake.Analytics public static partial class StorageAccountsOperationsExtensions { /// - /// Gets the specified Azure Storage account linked to the given Data Lake - /// Analytics account. + /// Updates the specified Data Lake Analytics account to add an Azure Storage + /// account. /// /// /// The operations group for this extension method. @@ -35,20 +35,24 @@ public static partial class StorageAccountsOperationsExtensions /// account. /// /// - /// The name of the Data Lake Analytics account from which to retrieve Azure - /// storage account details. + /// The name of the Data Lake Analytics account to which to add the Azure + /// Storage account. /// /// - /// The name of the Azure Storage account for which to retrieve the details. + /// The name of the Azure Storage account to add /// - public static StorageAccountInfo Get(this IStorageAccountsOperations operations, string resourceGroupName, string accountName, string storageAccountName) + /// + /// The parameters containing the access key and optional suffix for the Azure + /// Storage Account. + /// + public static void Add(this IStorageAccountsOperations operations, string resourceGroupName, string accountName, string storageAccountName, AddStorageAccountParameters parameters) { - return operations.GetAsync(resourceGroupName, accountName, storageAccountName).GetAwaiter().GetResult(); + operations.AddAsync(resourceGroupName, accountName, storageAccountName, parameters).GetAwaiter().GetResult(); } /// - /// Gets the specified Azure Storage account linked to the given Data Lake - /// Analytics account. + /// Updates the specified Data Lake Analytics account to add an Azure Storage + /// account. /// /// /// The operations group for this extension method. @@ -58,26 +62,27 @@ public static StorageAccountInfo Get(this IStorageAccountsOperations operations, /// account. /// /// - /// The name of the Data Lake Analytics account from which to retrieve Azure - /// storage account details. + /// The name of the Data Lake Analytics account to which to add the Azure + /// Storage account. /// /// - /// The name of the Azure Storage account for which to retrieve the details. + /// The name of the Azure Storage account to add + /// + /// + /// The parameters containing the access key and optional suffix for the Azure + /// Storage Account. /// /// /// The cancellation token. /// - public static async Task GetAsync(this IStorageAccountsOperations operations, string resourceGroupName, string accountName, string storageAccountName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task AddAsync(this IStorageAccountsOperations operations, string resourceGroupName, string accountName, string storageAccountName, AddStorageAccountParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, accountName, storageAccountName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + (await operations.AddWithHttpMessagesAsync(resourceGroupName, accountName, storageAccountName, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// Updates the specified Data Lake Analytics account to remove an Azure - /// Storage account. + /// Updates the Data Lake Analytics account to replace Azure Storage blob + /// account details, such as the access key and/or suffix. /// /// /// The operations group for this extension method. @@ -87,20 +92,23 @@ public static StorageAccountInfo Get(this IStorageAccountsOperations operations, /// account. /// /// - /// The name of the Data Lake Analytics account from which to remove the Azure - /// Storage account. + /// The name of the Data Lake Analytics account to modify storage accounts in /// /// - /// The name of the Azure Storage account to remove + /// The Azure Storage account to modify /// - public static void Delete(this IStorageAccountsOperations operations, string resourceGroupName, string accountName, string storageAccountName) + /// + /// The parameters containing the access key and suffix to update the storage + /// account with, if any. Passing nothing results in no change. + /// + public static void Update(this IStorageAccountsOperations operations, string resourceGroupName, string accountName, string storageAccountName, UpdateStorageAccountParameters parameters = default(UpdateStorageAccountParameters)) { - operations.DeleteAsync(resourceGroupName, accountName, storageAccountName).GetAwaiter().GetResult(); + operations.UpdateAsync(resourceGroupName, accountName, storageAccountName, parameters).GetAwaiter().GetResult(); } /// - /// Updates the specified Data Lake Analytics account to remove an Azure - /// Storage account. + /// Updates the Data Lake Analytics account to replace Azure Storage blob + /// account details, such as the access key and/or suffix. /// /// /// The operations group for this extension method. @@ -110,23 +118,26 @@ public static void Delete(this IStorageAccountsOperations operations, string res /// account. /// /// - /// The name of the Data Lake Analytics account from which to remove the Azure - /// Storage account. + /// The name of the Data Lake Analytics account to modify storage accounts in /// /// - /// The name of the Azure Storage account to remove + /// The Azure Storage account to modify + /// + /// + /// The parameters containing the access key and suffix to update the storage + /// account with, if any. Passing nothing results in no change. /// /// /// The cancellation token. /// - public static async Task DeleteAsync(this IStorageAccountsOperations operations, string resourceGroupName, string accountName, string storageAccountName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task UpdateAsync(this IStorageAccountsOperations operations, string resourceGroupName, string accountName, string storageAccountName, UpdateStorageAccountParameters parameters = default(UpdateStorageAccountParameters), CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, accountName, storageAccountName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.UpdateWithHttpMessagesAsync(resourceGroupName, accountName, storageAccountName, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// Updates the Data Lake Analytics account to replace Azure Storage blob - /// account details, such as the access key and/or suffix. + /// Updates the specified Data Lake Analytics account to remove an Azure + /// Storage account. /// /// /// The operations group for this extension method. @@ -136,23 +147,20 @@ public static void Delete(this IStorageAccountsOperations operations, string res /// account. /// /// - /// The name of the Data Lake Analytics account to modify storage accounts in + /// The name of the Data Lake Analytics account from which to remove the Azure + /// Storage account. /// /// - /// The Azure Storage account to modify - /// - /// - /// The parameters containing the access key and suffix to update the storage - /// account with, if any. Passing nothing results in no change. + /// The name of the Azure Storage account to remove /// - public static void Update(this IStorageAccountsOperations operations, string resourceGroupName, string accountName, string storageAccountName, UpdateStorageAccountParameters parameters = default(UpdateStorageAccountParameters)) + public static void Delete(this IStorageAccountsOperations operations, string resourceGroupName, string accountName, string storageAccountName) { - operations.UpdateAsync(resourceGroupName, accountName, storageAccountName, parameters).GetAwaiter().GetResult(); + operations.DeleteAsync(resourceGroupName, accountName, storageAccountName).GetAwaiter().GetResult(); } /// - /// Updates the Data Lake Analytics account to replace Azure Storage blob - /// account details, such as the access key and/or suffix. + /// Updates the specified Data Lake Analytics account to remove an Azure + /// Storage account. /// /// /// The operations group for this extension method. @@ -162,26 +170,23 @@ public static void Delete(this IStorageAccountsOperations operations, string res /// account. /// /// - /// The name of the Data Lake Analytics account to modify storage accounts in + /// The name of the Data Lake Analytics account from which to remove the Azure + /// Storage account. /// /// - /// The Azure Storage account to modify - /// - /// - /// The parameters containing the access key and suffix to update the storage - /// account with, if any. Passing nothing results in no change. + /// The name of the Azure Storage account to remove /// /// /// The cancellation token. /// - public static async Task UpdateAsync(this IStorageAccountsOperations operations, string resourceGroupName, string accountName, string storageAccountName, UpdateStorageAccountParameters parameters = default(UpdateStorageAccountParameters), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteAsync(this IStorageAccountsOperations operations, string resourceGroupName, string accountName, string storageAccountName, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.UpdateWithHttpMessagesAsync(resourceGroupName, accountName, storageAccountName, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, accountName, storageAccountName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// Updates the specified Data Lake Analytics account to add an Azure Storage - /// account. + /// Gets the specified Azure Storage account linked to the given Data Lake + /// Analytics account. /// /// /// The operations group for this extension method. @@ -191,24 +196,20 @@ public static void Delete(this IStorageAccountsOperations operations, string res /// account. /// /// - /// The name of the Data Lake Analytics account to which to add the Azure - /// Storage account. + /// The name of the Data Lake Analytics account from which to retrieve Azure + /// storage account details. /// /// - /// The name of the Azure Storage account to add - /// - /// - /// The parameters containing the access key and optional suffix for the Azure - /// Storage Account. + /// The name of the Azure Storage account for which to retrieve the details. /// - public static void Add(this IStorageAccountsOperations operations, string resourceGroupName, string accountName, string storageAccountName, AddStorageAccountParameters parameters) + public static StorageAccountInfo Get(this IStorageAccountsOperations operations, string resourceGroupName, string accountName, string storageAccountName) { - operations.AddAsync(resourceGroupName, accountName, storageAccountName, parameters).GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, accountName, storageAccountName).GetAwaiter().GetResult(); } /// - /// Updates the specified Data Lake Analytics account to add an Azure Storage - /// account. + /// Gets the specified Azure Storage account linked to the given Data Lake + /// Analytics account. /// /// /// The operations group for this extension method. @@ -218,22 +219,21 @@ public static void Add(this IStorageAccountsOperations operations, string resour /// account. /// /// - /// The name of the Data Lake Analytics account to which to add the Azure - /// Storage account. + /// The name of the Data Lake Analytics account from which to retrieve Azure + /// storage account details. /// /// - /// The name of the Azure Storage account to add - /// - /// - /// The parameters containing the access key and optional suffix for the Azure - /// Storage Account. + /// The name of the Azure Storage account for which to retrieve the details. /// /// /// The cancellation token. /// - public static async Task AddAsync(this IStorageAccountsOperations operations, string resourceGroupName, string accountName, string storageAccountName, AddStorageAccountParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAsync(this IStorageAccountsOperations operations, string resourceGroupName, string accountName, string storageAccountName, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.AddWithHttpMessagesAsync(resourceGroupName, accountName, storageAccountName, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose(); + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, accountName, storageAccountName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics.csproj b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics.csproj index cffea5285a9d..b1918fadd4b4 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics.csproj +++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics.csproj @@ -3,7 +3,7 @@ Microsoft.Azure.Management.DataLake.Analytics Provides Data Lake Analytics account, job and catalog management capabilities for Microsoft Azure. - 3.0.1 + 3.1.0-preview Microsoft.Azure.Management.DataLake.Analytics Microsoft Azure Data Lake Analytics management;DataLakeAnalytics;Data Lake Analytics management;REST HTTP client;windowsazureofficial;netcore451511 See https://aka.ms/adladotnetsdkchangelog for release notes. diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Properties/AssemblyInfo.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Properties/AssemblyInfo.cs index 9e608436ead3..5b348c5451c4 100644 --- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Properties/AssemblyInfo.cs +++ b/src/SDKs/DataLake.Analytics/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("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/SDKs/DataLake.Analytics/changelog.md b/src/SDKs/DataLake.Analytics/changelog.md index f527fedaa030..a75cd80c1cb7 100644 --- a/src/SDKs/DataLake.Analytics/changelog.md +++ b/src/SDKs/DataLake.Analytics/changelog.md @@ -1,4 +1,22 @@ ## Microsoft.Azure.Management.DataLake.Analytics release notes +### Changes in 3.1.0-preview +- Create an explicit set of parameters for job submission. NOTE: Only +U-SQL is supported in this change, no hive jobs are supported at +present. + - For jobs submission, change JobInformation to CreateJobParameters + - For the properties use the right object (e.g. USqlJobProperties to CreateUSqlJobProperties) + - For building jobs, change JobInformation to BuildJobParameters + - For the properties use the right object (e.g. USqlJobProperties to CreateUSqlJobProperties) + - Note that the following fields are not part of BuildJobParameters + - degreeOfParallelism + - priority + - related +- Create a "Basic" jobInformation that is returned for LIST calls +- Setup inheritance for GET jobs +- Create an inheritance structure for GET and LIST ADLA +accounts. +- This also follows the Basic -> Object inheritance pattern. + ### Changes in 3.0.1 - Add support for a `basic` parameter on `ListTables` and `ListTablesByDatabase` which enables a user to retrieve a limited set of properties when listing their tables, resulting in a performance improvement when full metadata is not required. diff --git a/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.AccountOperationTests/CreateGetUpdateDeleteTest.json b/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.AccountOperationTests/CreateGetUpdateDeleteTest.json index 5a42e9818a61..823114ace3e9 100644 --- a/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.AccountOperationTests/CreateGetUpdateDeleteTest.json +++ b/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.AccountOperationTests/CreateGetUpdateDeleteTest.json @@ -1,22 +1,23 @@ { "Entries": [ { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d2841bf1-d3bd-4954-afbb-77a77d204388" + "47e8a869-4e8c-44f2-b06c-a091f2e815cd" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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" @@ -28,7 +29,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:00:58 GMT" + "Mon, 24 Jul 2017 22:38:37 GMT" ], "Pragma": [ "no-cache" @@ -43,13 +44,13 @@ "1199" ], "x-ms-request-id": [ - "5790755b-8cac-48c4-b0e3-8b1faf2db3c5" + "ada4b273-0b4a-4deb-8778-a0f2e1c01cdb" ], "x-ms-correlation-request-id": [ - "5790755b-8cac-48c4-b0e3-8b1faf2db3c5" + "ada4b273-0b4a-4deb-8778-a0f2e1c01cdb" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180059Z:5790755b-8cac-48c4-b0e3-8b1faf2db3c5" + "WESTUS2:20170724T223838Z:ada4b273-0b4a-4deb-8778-a0f2e1c01cdb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -58,22 +59,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9f407e5e-4363-45ce-80e5-c390c02881b1" + "a977f00e-ec0c-4493-b6cd-f32109fea6fc" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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" @@ -85,7 +87,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:00:58 GMT" + "Mon, 24 Jul 2017 22:38:38 GMT" ], "Pragma": [ "no-cache" @@ -94,16 +96,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14989" ], "x-ms-request-id": [ - "de491c4f-2bfb-4f78-9900-8c9adf259da1" + "c83dba2f-3c2c-4c90-b0a7-f200b83d13a4" ], "x-ms-correlation-request-id": [ - "de491c4f-2bfb-4f78-9900-8c9adf259da1" + "c83dba2f-3c2c-4c90-b0a7-f200b83d13a4" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180059Z:de491c4f-2bfb-4f78-9900-8c9adf259da1" + "WESTUS2:20170724T223839Z:c83dba2f-3c2c-4c90-b0a7-f200b83d13a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -112,22 +114,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e1e04682-bb40-4754-b5ac-5363b608a02f" + "c2faeffc-3ee3-48f6-bd6d-a19ebd4f6708" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/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 \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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 \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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,7 +142,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:00:59 GMT" + "Mon, 24 Jul 2017 22:38:39 GMT" ], "Pragma": [ "no-cache" @@ -154,13 +157,13 @@ "1198" ], "x-ms-request-id": [ - "a996e81e-cbbd-4563-9d6c-af99e8cb8df0" + "da478f9c-b4d9-4c7d-9669-10934c073988" ], "x-ms-correlation-request-id": [ - "a996e81e-cbbd-4563-9d6c-af99e8cb8df0" + "da478f9c-b4d9-4c7d-9669-10934c073988" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180059Z:a996e81e-cbbd-4563-9d6c-af99e8cb8df0" + "WESTUS2:20170724T223840Z:da478f9c-b4d9-4c7d-9669-10934c073988" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -169,22 +172,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b3499f82-eed4-4397-bae6-7a32f57537b1" + "a34a7227-0bbb-46da-ac2d-bd70d22373e6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/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 \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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 \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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" @@ -196,7 +200,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:00:59 GMT" + "Mon, 24 Jul 2017 22:38:40 GMT" ], "Pragma": [ "no-cache" @@ -205,16 +209,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14988" ], "x-ms-request-id": [ - "f1dac4ba-a39e-4bd3-87b3-0b547274d862" + "01c266a9-0117-424f-b428-60ae9836ca44" ], "x-ms-correlation-request-id": [ - "f1dac4ba-a39e-4bd3-87b3-0b547274d862" + "01c266a9-0117-424f-b428-60ae9836ca44" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180059Z:f1dac4ba-a39e-4bd3-87b3-0b547274d862" + "WESTUS2:20170724T223841Z:01c266a9-0117-424f-b428-60ae9836ca44" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -223,22 +227,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17619?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzYxOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg18757?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxODc1Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "da9f46bc-f166-48f9-8d60-e57bb2413b8f" + "e6454cfc-5f29-4d5e-8b84-7a06fce6974d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg17619' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg18757' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -253,7 +258,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:00:59 GMT" + "Mon, 24 Jul 2017 22:38:40 GMT" ], "Pragma": [ "no-cache" @@ -262,16 +267,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14987" ], "x-ms-request-id": [ - "52a6e7c6-dbb5-4703-a051-1997d7bbda26" + "0a333b89-0129-4c9f-8a7a-d463dff7d50d" ], "x-ms-correlation-request-id": [ - "52a6e7c6-dbb5-4703-a051-1997d7bbda26" + "0a333b89-0129-4c9f-8a7a-d463dff7d50d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180059Z:52a6e7c6-dbb5-4703-a051-1997d7bbda26" + "WESTUS2:20170724T223841Z:0a333b89-0129-4c9f-8a7a-d463dff7d50d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -280,22 +285,23 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17619?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzYxOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg18757?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxODc1Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2a88839b-cf45-48be-a9e8-f10373b300d7" + "55d8ddf3-3bc8-4e71-8581-db32ea4ec9f0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg18757\",\r\n \"name\": \"datalakerg18757\",\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 +313,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:01:00 GMT" + "Mon, 24 Jul 2017 22:38:41 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +322,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14986" ], "x-ms-request-id": [ - "7750e254-e571-4755-8b08-e52a7872118f" + "3747b5fa-bce8-4555-a6d8-3696b734ca49" ], "x-ms-correlation-request-id": [ - "7750e254-e571-4755-8b08-e52a7872118f" + "3747b5fa-bce8-4555-a6d8-3696b734ca49" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180101Z:7750e254-e571-4755-8b08-e52a7872118f" + "WESTUS2:20170724T223842Z:3747b5fa-bce8-4555-a6d8-3696b734ca49" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +340,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17619?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzYxOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg18757?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxODc1Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,16 +352,17 @@ "31" ], "x-ms-client-request-id": [ - "89f779e4-b4a8-49c4-b243-e8876049ec38" + "cbb967bf-09d8-415b-b830-5f9dc4c317b8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg18757\",\r\n \"name\": \"datalakerg18757\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -370,7 +377,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:01:00 GMT" + "Mon, 24 Jul 2017 22:38:41 GMT" ], "Pragma": [ "no-cache" @@ -379,13 +386,13 @@ "1197" ], "x-ms-request-id": [ - "5ad73921-40ad-4df2-8674-f5c278413b08" + "6beffb5a-eb68-4a14-8218-d7078931bebd" ], "x-ms-correlation-request-id": [ - "5ad73921-40ad-4df2-8674-f5c278413b08" + "6beffb5a-eb68-4a14-8218-d7078931bebd" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180101Z:5ad73921-40ad-4df2-8674-f5c278413b08" + "WESTUS2:20170724T223842Z:6beffb5a-eb68-4a14-8218-d7078931bebd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -394,22 +401,23 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testadlfs13480?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzYxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTM0ODA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg18757/providers/Microsoft.DataLakeStore/accounts/testadlfs13551?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODc1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTM1NTE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4f4ee931-0136-4ced-9044-ed9a80f4d4bd" + "673929f1-7909-4c09-8efe-30976edc3595" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs13551' under resource group 'datalakerg18757' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "166" @@ -424,7 +432,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:01:00 GMT" + "Mon, 24 Jul 2017 22:38:41 GMT" ], "Pragma": [ "no-cache" @@ -433,13 +441,13 @@ "gateway" ], "x-ms-request-id": [ - "fa9f5b97-933f-43f5-8237-cede9d3feaa8" + "d715ff11-cdf3-4939-bbe6-977cbb530323" ], "x-ms-correlation-request-id": [ - "fa9f5b97-933f-43f5-8237-cede9d3feaa8" + "d715ff11-cdf3-4939-bbe6-977cbb530323" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180101Z:fa9f5b97-933f-43f5-8237-cede9d3feaa8" + "WESTUS2:20170724T223842Z:d715ff11-cdf3-4939-bbe6-977cbb530323" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -448,16 +456,17 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testadlfs13480?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzYxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTM0ODA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg18757/providers/Microsoft.DataLakeStore/accounts/testadlfs13551?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODc1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTM1NTE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"testadlfs13551.azuredatalakestore.net\",\r\n \"accountId\": \"13c66116-dd85-4067-abc7-573cb495ce0e\",\r\n \"creationTime\": \"2017-07-24T22:38:47.103032Z\",\r\n \"lastModifiedTime\": \"2017-07-24T22:38:47.103032Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg18757/providers/Microsoft.DataLakeStore/accounts/testadlfs13551\",\r\n \"name\": \"testadlfs13551\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -472,7 +481,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:01:34 GMT" + "Mon, 24 Jul 2017 22:39:15 GMT" ], "Pragma": [ "no-cache" @@ -484,7 +493,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "1cb3e6ef-82cf-431d-a4bf-105492d16f76" + "6bf83456-2be7-40cd-a946-550ebddef063" ], "X-Content-Type-Options": [ "nosniff" @@ -496,13 +505,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14987" ], "x-ms-correlation-request-id": [ - "0294e10d-fe5e-4dae-bb1a-2cce8d10f3fe" + "f44219ce-65e7-4da5-b82f-a7d936a30a7b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180134Z:0294e10d-fe5e-4dae-bb1a-2cce8d10f3fe" + "WESTUS2:20170724T223916Z:f44219ce-65e7-4da5-b82f-a7d936a30a7b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -511,22 +520,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testadlfs13480?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzYxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTM0ODA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg18757/providers/Microsoft.DataLakeStore/accounts/testadlfs13551?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODc1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTM1NTE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8c0ab110-739c-4a22-ad6d-d4240f9ff9e2" + "5d9192f5-6257-43ff-91ed-1ee9a166bea9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"testadlfs13551.azuredatalakestore.net\",\r\n \"accountId\": \"13c66116-dd85-4067-abc7-573cb495ce0e\",\r\n \"creationTime\": \"2017-07-24T22:38:47.103032Z\",\r\n \"lastModifiedTime\": \"2017-07-24T22:38:47.103032Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg18757/providers/Microsoft.DataLakeStore/accounts/testadlfs13551\",\r\n \"name\": \"testadlfs13551\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -541,7 +551,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:01:35 GMT" + "Mon, 24 Jul 2017 22:39:17 GMT" ], "Pragma": [ "no-cache" @@ -553,7 +563,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "6ef52bfc-5305-4016-9f49-a04369cd0f48" + "120716e5-9fc9-4843-ab5a-c2278d1cfb78" ], "X-Content-Type-Options": [ "nosniff" @@ -565,13 +575,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14955" ], "x-ms-correlation-request-id": [ - "2a61c508-02d8-4938-b833-e26f2fe9d57c" + "ffbf11c9-26df-4f42-ad38-e4eab27cb64a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180135Z:2a61c508-02d8-4938-b833-e26f2fe9d57c" + "WESTUS2:20170724T223917Z:ffbf11c9-26df-4f42-ad38-e4eab27cb64a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -580,8 +590,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testadlfs13480?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzYxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTM0ODA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg18757/providers/Microsoft.DataLakeStore/accounts/testadlfs13551?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODc1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTM1NTE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -592,16 +602,17 @@ "31" ], "x-ms-client-request-id": [ - "f45db8dd-4441-449e-831f-ffd32897e079" + "40be6604-78cf-444e-bd0e-2f2129f5aedb" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"13c66116-dd85-4067-abc7-573cb495ce0e\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg18757/providers/Microsoft.DataLakeStore/accounts/testadlfs13551\",\r\n \"name\": \"testadlfs13551\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "420" @@ -619,13 +630,13 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:01:02 GMT" + "Mon, 24 Jul 2017 22:38:44 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testadlfs13480/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg18757/providers/Microsoft.DataLakeStore/accounts/testadlfs13551/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -634,10 +645,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "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" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/13c66116-dd85-4067-abc7-573cb495ce0e0?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "6ab89eb4-d5f9-4cca-bacf-dcca5c44a0ce" + "30fb7b9d-8969-48d2-b3b1-35df586278b4" ], "X-Content-Type-Options": [ "nosniff" @@ -649,13 +660,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "3e84f7c2-4edb-4fb2-abe0-404f7e4906ff" + "dfa31f6d-e986-4f6d-aa65-79ea1896e885" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180103Z:3e84f7c2-4edb-4fb2-abe0-404f7e4906ff" + "WESTUS2:20170724T223844Z:dfa31f6d-e986-4f6d-aa65-79ea1896e885" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -664,13 +675,14 @@ "StatusCode": 201 }, { - "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", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/13c66116-dd85-4067-abc7-573cb495ce0e0?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzEzYzY2MTE2LWRkODUtNDA2Ny1hYmM3LTU3M2NiNDk1Y2UwZTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -688,7 +700,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:01:33 GMT" + "Mon, 24 Jul 2017 22:39:15 GMT" ], "Pragma": [ "no-cache" @@ -700,7 +712,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "ce16d64f-0f17-42b9-a367-43d12b776507" + "b081ca66-0c3f-4a29-845e-d5709a14ff45" ], "X-Content-Type-Options": [ "nosniff" @@ -712,13 +724,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14996" ], "x-ms-correlation-request-id": [ - "19383664-4487-457d-9c79-86d8087924a8" + "b2dad780-1f1d-41cc-b924-3adfb6707bde" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180134Z:19383664-4487-457d-9c79-86d8087924a8" + "WESTUS2:20170724T223915Z:b2dad780-1f1d-41cc-b924-3adfb6707bde" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -727,8 +739,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzYxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTMyOTk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg18757/providers/Microsoft.DataLakeStore/accounts/testdatalake11106?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODc1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTExMDY/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": { @@ -739,16 +751,17 @@ "291" ], "x-ms-client-request-id": [ - "200bb8e3-6add-4d63-a77c-daa70620b895" + "426d9c3f-1329-45ed-878f-da76e92985e3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "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\": \"cde93351-c54a-46d9-9b19-60791bf97092\",\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/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg18757/providers/Microsoft.DataLakeStore/accounts/testdatalake11106\",\r\n \"name\": \"testdatalake11106\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "685" @@ -766,13 +779,13 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:01:40 GMT" + "Mon, 24 Jul 2017 22:39:23 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg18757/providers/Microsoft.DataLakeStore/accounts/testdatalake11106/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -781,10 +794,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "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" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/cde93351-c54a-46d9-9b19-60791bf970920?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "3517bd9a-5d7a-4178-9ca6-9cb6bf914141" + "746f015f-550f-498b-a40e-9c9261aa7404" ], "X-Content-Type-Options": [ "nosniff" @@ -796,13 +809,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "52dbb320-3308-4e45-b461-e689b0c6a0aa" + "f6a2618f-2fa2-4933-839e-4e45dd38e090" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180140Z:52dbb320-3308-4e45-b461-e689b0c6a0aa" + "WESTUS2:20170724T223923Z:f6a2618f-2fa2-4933-839e-4e45dd38e090" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -811,13 +824,14 @@ "StatusCode": 201 }, { - "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", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/cde93351-c54a-46d9-9b19-60791bf970920?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2NkZTkzMzUxLWM1NGEtNDZkOS05YjE5LTYwNzkxYmY5NzA5MjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -835,7 +849,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:02:10 GMT" + "Mon, 24 Jul 2017 22:39:53 GMT" ], "Pragma": [ "no-cache" @@ -847,7 +861,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "b8b5f004-14ac-4767-b505-d3b8fe9592ca" + "36e58e04-7573-44df-9f62-fce97cf28a22" ], "X-Content-Type-Options": [ "nosniff" @@ -859,13 +873,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14991" ], "x-ms-correlation-request-id": [ - "b1e3b269-ab21-40b8-8f5c-66ca2f0966d6" + "833bc83c-08b0-4b5d-8616-1c3b7d9c76b3" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180211Z:b1e3b269-ab21-40b8-8f5c-66ca2f0966d6" + "WESTUS2:20170724T223954Z:833bc83c-08b0-4b5d-8616-1c3b7d9c76b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -874,16 +888,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzYxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTMyOTk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg18757/providers/Microsoft.DataLakeStore/accounts/testdatalake11106?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODc1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTExMDY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"Commitment_1TB\",\r\n \"newTier\": \"Commitment_1TB\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake11106.azuredatalakestore.net\",\r\n \"accountId\": \"cde93351-c54a-46d9-9b19-60791bf97092\",\r\n \"creationTime\": \"2017-07-24T22:39:23.5734731Z\",\r\n \"lastModifiedTime\": \"2017-07-24T22:39:23.5734731Z\"\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\": \"9bacad70-ba92-43a7-a522-f66617190bd1\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg18757/providers/Microsoft.DataLakeStore/accounts/testdatalake11106\",\r\n \"name\": \"testdatalake11106\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -898,7 +913,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:02:11 GMT" + "Mon, 24 Jul 2017 22:39:55 GMT" ], "Pragma": [ "no-cache" @@ -910,7 +925,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "3ee00e2f-a6b8-4999-8243-5580e504e8ce" + "aaf0d703-4b1d-4f6d-b96f-401fb664affd" ], "X-Content-Type-Options": [ "nosniff" @@ -922,13 +937,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14990" ], "x-ms-correlation-request-id": [ - "6f537ebc-ac13-46c7-913e-9ee580712d30" + "0e4bfee9-a98a-464a-b1d7-aa248a537ed8" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180211Z:6f537ebc-ac13-46c7-913e-9ee580712d30" + "WESTUS2:20170724T223955Z:0e4bfee9-a98a-464a-b1d7-aa248a537ed8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -937,22 +952,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzYxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTMyOTk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg18757/providers/Microsoft.DataLakeStore/accounts/testdatalake11106?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODc1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTExMDY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ba861eab-6dde-4b9b-950b-ddf84b9eef06" + "1462f710-3f02-4eb1-901e-d7197d7df85b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"Commitment_1TB\",\r\n \"newTier\": \"Commitment_1TB\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake11106.azuredatalakestore.net\",\r\n \"accountId\": \"cde93351-c54a-46d9-9b19-60791bf97092\",\r\n \"creationTime\": \"2017-07-24T22:39:23.5734731Z\",\r\n \"lastModifiedTime\": \"2017-07-24T22:39:23.5734731Z\"\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\": \"9bacad70-ba92-43a7-a522-f66617190bd1\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg18757/providers/Microsoft.DataLakeStore/accounts/testdatalake11106\",\r\n \"name\": \"testdatalake11106\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -967,7 +983,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:02:12 GMT" + "Mon, 24 Jul 2017 22:39:55 GMT" ], "Pragma": [ "no-cache" @@ -979,7 +995,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "bc3370d6-91bb-49ec-a4a2-3506b2f96864" + "c62acf25-6bf5-460d-a2dc-eeb127f7b624" ], "X-Content-Type-Options": [ "nosniff" @@ -991,13 +1007,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14993" ], "x-ms-correlation-request-id": [ - "73438196-65ef-49cd-8444-b2f4eb034449" + "f30add2b-fab8-4196-a9b1-d00353ebc920" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180212Z:73438196-65ef-49cd-8444-b2f4eb034449" + "WESTUS2:20170724T223956Z:f30add2b-fab8-4196-a9b1-d00353ebc920" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1006,22 +1022,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzYxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTMyOTk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg18757/providers/Microsoft.DataLakeStore/accounts/testdatalake11106?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODc1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTExMDY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8ee32f38-b5be-4ed4-bd8a-75d99efd92fe" + "eb6be1e6-e132-4722-9b65-695ab9d35115" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"Commitment_1TB\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake11106.azuredatalakestore.net\",\r\n \"accountId\": \"cde93351-c54a-46d9-9b19-60791bf97092\",\r\n \"creationTime\": \"2017-07-24T22:39:23.5734731Z\",\r\n \"lastModifiedTime\": \"2017-07-24T22:40:00.0277479Z\"\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\": \"9bacad70-ba92-43a7-a522-f66617190bd1\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg18757/providers/Microsoft.DataLakeStore/accounts/testdatalake11106\",\r\n \"name\": \"testdatalake11106\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1036,7 +1053,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:02:14 GMT" + "Mon, 24 Jul 2017 22:39:58 GMT" ], "Pragma": [ "no-cache" @@ -1048,7 +1065,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "760945ba-80b7-410b-a9c5-75360af9f0fa" + "f5638c3d-fc03-4654-bab7-974b67065729" ], "X-Content-Type-Options": [ "nosniff" @@ -1060,13 +1077,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14990" ], "x-ms-correlation-request-id": [ - "bed32dd6-3a7b-488f-aad2-20bc1205d6bd" + "ae5883df-b5ff-4450-9056-8208aad6013e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180214Z:bed32dd6-3a7b-488f-aad2-20bc1205d6bd" + "WESTUS2:20170724T223959Z:ae5883df-b5ff-4450-9056-8208aad6013e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1075,22 +1092,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzYxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTMyOTk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg18757/providers/Microsoft.DataLakeStore/accounts/testdatalake11106?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODc1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTExMDY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d1cd5fbb-0ff1-47ef-8bdf-bdf35b2b366b" + "5cc90ae7-027c-4a6a-af15-90f731a0e989" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"Commitment_1TB\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake11106.azuredatalakestore.net\",\r\n \"accountId\": \"cde93351-c54a-46d9-9b19-60791bf97092\",\r\n \"creationTime\": \"2017-07-24T22:39:23.5734731Z\",\r\n \"lastModifiedTime\": \"2017-07-24T22:40:00.0277479Z\"\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\": \"9bacad70-ba92-43a7-a522-f66617190bd1\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg18757/providers/Microsoft.DataLakeStore/accounts/testdatalake11106\",\r\n \"name\": \"testdatalake11106\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1105,7 +1123,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:02:49 GMT" + "Mon, 24 Jul 2017 22:40:35 GMT" ], "Pragma": [ "no-cache" @@ -1117,7 +1135,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "2a0b8f76-3d1d-4f31-99eb-304149182d93" + "581e840b-a49a-49d3-b9c7-891b74e5f877" ], "X-Content-Type-Options": [ "nosniff" @@ -1129,13 +1147,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14992" ], "x-ms-correlation-request-id": [ - "67a48e5f-1c2d-4bad-bfa7-971a25559edc" + "c8c55c00-b83d-4b71-aeb1-846e5fbac552" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180249Z:67a48e5f-1c2d-4bad-bfa7-971a25559edc" + "WESTUS2:20170724T224035Z:c8c55c00-b83d-4b71-aeb1-846e5fbac552" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1144,22 +1162,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzYxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTMyOTk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg18757/providers/Microsoft.DataLakeStore/accounts/testdatalake11106?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODc1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTExMDY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9f953422-0108-4610-9139-f4c3f3362adb" + "1044d0a3-a6a5-4535-acc7-50f183ea73a2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake11106' under resource group 'datalakerg18757' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "169" @@ -1174,7 +1193,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:02:51 GMT" + "Mon, 24 Jul 2017 22:40:39 GMT" ], "Pragma": [ "no-cache" @@ -1183,13 +1202,13 @@ "gateway" ], "x-ms-request-id": [ - "4d27529b-a808-4d7b-a393-0e06baf142b6" + "a5d87b5d-cade-46cb-9e1e-91c7c8f33242" ], "x-ms-correlation-request-id": [ - "4d27529b-a808-4d7b-a393-0e06baf142b6" + "a5d87b5d-cade-46cb-9e1e-91c7c8f33242" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180252Z:4d27529b-a808-4d7b-a393-0e06baf142b6" + "WESTUS2:20170724T224039Z:a5d87b5d-cade-46cb-9e1e-91c7c8f33242" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1198,8 +1217,8 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzYxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTMyOTk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg18757/providers/Microsoft.DataLakeStore/accounts/testdatalake11106?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODc1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTExMDY/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": { @@ -1210,16 +1229,17 @@ "111" ], "x-ms-client-request-id": [ - "85caa632-96a6-43eb-b823-e589e19d9a14" + "949a03f5-b4d7-4269-93df-42c3ca57cab9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"Commitment_1TB\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake11106.azuredatalakestore.net\",\r\n \"accountId\": \"cde93351-c54a-46d9-9b19-60791bf97092\",\r\n \"creationTime\": \"2017-07-24T22:39:23.5734731Z\",\r\n \"lastModifiedTime\": \"2017-07-24T22:40:00.0277479Z\"\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\": \"9bacad70-ba92-43a7-a522-f66617190bd1\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg18757/providers/Microsoft.DataLakeStore/accounts/testdatalake11106\",\r\n \"name\": \"testdatalake11106\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1234,7 +1254,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:02:13 GMT" + "Mon, 24 Jul 2017 22:39:58 GMT" ], "Pragma": [ "no-cache" @@ -1246,7 +1266,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "b48c2a3b-356d-4c60-8b4f-0d151948fba8" + "3db3e78e-1c35-4840-aef4-4131c0bf8954" ], "X-Content-Type-Options": [ "nosniff" @@ -1258,13 +1278,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "d8a4996e-6a3f-4f59-8069-6e78310d512c" + "ee09050d-d4fc-411f-babd-d452edbfb0ad" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180214Z:d8a4996e-6a3f-4f59-8069-6e78310d512c" + "WESTUS2:20170724T223958Z:ee09050d-d4fc-411f-babd-d452edbfb0ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1273,8 +1293,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299acct2?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzYxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTMyOTlhY2N0Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg18757/providers/Microsoft.DataLakeStore/accounts/testdatalake11106acct2?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODc1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTExMDZhY2N0Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -1285,16 +1305,17 @@ "31" ], "x-ms-client-request-id": [ - "1e344f38-e3c5-4868-8407-502d2ad69d6f" + "ab410d47-dc17-4f8c-84c9-1044960961ac" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"28ee9e1c-5174-4781-b7e9-79145fc02b37\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg18757/providers/Microsoft.DataLakeStore/accounts/testdatalake11106acct2\",\r\n \"name\": \"testdatalake11106acct2\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "436" @@ -1312,13 +1333,13 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:02:16 GMT" + "Mon, 24 Jul 2017 22:40:01 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299acct2/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg18757/providers/Microsoft.DataLakeStore/accounts/testdatalake11106acct2/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -1327,10 +1348,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "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" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/28ee9e1c-5174-4781-b7e9-79145fc02b370?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "dd30c4ac-e2d9-4e8d-b6e2-e0503edf8822" + "4b946c1d-8543-4466-819f-bcc84b4a7f9e" ], "X-Content-Type-Options": [ "nosniff" @@ -1342,13 +1363,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-correlation-request-id": [ - "6349af4d-3342-43cb-85d0-a2c9120c5248" + "8c153a4b-7a53-4db2-8cde-b758e38d8c90" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180216Z:6349af4d-3342-43cb-85d0-a2c9120c5248" + "WESTUS2:20170724T224001Z:8c153a4b-7a53-4db2-8cde-b758e38d8c90" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1357,13 +1378,14 @@ "StatusCode": 201 }, { - "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", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/28ee9e1c-5174-4781-b7e9-79145fc02b370?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzI4ZWU5ZTFjLTUxNzQtNDc4MS1iN2U5LTc5MTQ1ZmMwMmIzNzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -1381,7 +1403,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:02:47 GMT" + "Mon, 24 Jul 2017 22:40:32 GMT" ], "Pragma": [ "no-cache" @@ -1393,7 +1415,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e9b9d55c-43f9-4049-a924-4b319e890ed4" + "b4c8829f-68f9-454a-827e-63a1db387558" ], "X-Content-Type-Options": [ "nosniff" @@ -1405,13 +1427,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14987" ], "x-ms-correlation-request-id": [ - "e8a11f24-3017-4a8f-8a29-6bc93d311051" + "dd0ca426-e15a-4688-b342-c11a89b082f9" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180247Z:e8a11f24-3017-4a8f-8a29-6bc93d311051" + "WESTUS2:20170724T224032Z:dd0ca426-e15a-4688-b342-c11a89b082f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1420,16 +1442,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299acct2?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzYxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTMyOTlhY2N0Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg18757/providers/Microsoft.DataLakeStore/accounts/testdatalake11106acct2?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODc1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTExMDZhY2N0Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"testdatalake11106acct2.azuredatalakestore.net\",\r\n \"accountId\": \"28ee9e1c-5174-4781-b7e9-79145fc02b37\",\r\n \"creationTime\": \"2017-07-24T22:40:01.7884543Z\",\r\n \"lastModifiedTime\": \"2017-07-24T22:40:01.7884543Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg18757/providers/Microsoft.DataLakeStore/accounts/testdatalake11106acct2\",\r\n \"name\": \"testdatalake11106acct2\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1444,7 +1467,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:02:47 GMT" + "Mon, 24 Jul 2017 22:40:32 GMT" ], "Pragma": [ "no-cache" @@ -1456,7 +1479,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "607e3d6d-b69b-4087-8ace-91068676321b" + "b417e360-1d52-4a56-bcec-07e9d467a783" ], "X-Content-Type-Options": [ "nosniff" @@ -1468,13 +1491,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14984" ], "x-ms-correlation-request-id": [ - "509f6b00-7c28-4d58-9f53-8983ef873ef4" + "bec02dc7-d705-42d5-876f-45dea3c7540c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180247Z:509f6b00-7c28-4d58-9f53-8983ef873ef4" + "WESTUS2:20170724T224032Z:bec02dc7-d705-42d5-876f-45dea3c7540c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1483,22 +1506,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/accounts?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cz9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/accounts?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cz9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "049128ae-a475-41f5-88d1-c65a47d0d553" + "a6e01406-a023-4ab3-bb92-a8405ffed273" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"begoldsmadls01.azuredatalakestore.net\",\r\n \"accountId\": \"94f4bf5d-78a9-4c31-8aa7-b34d07bad898\",\r\n \"creationTime\": \"2017-03-29T21:49:35.189795Z\",\r\n \"lastModifiedTime\": \"2017-03-29T21:49:35.189795Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/begoldsmadlsrg01/providers/Microsoft.DataLakeStore/accounts/begoldsmadls01\",\r\n \"name\": \"begoldsmadls01\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs13551.azuredatalakestore.net\",\r\n \"accountId\": \"13c66116-dd85-4067-abc7-573cb495ce0e\",\r\n \"creationTime\": \"2017-07-24T22:38:47.103032Z\",\r\n \"lastModifiedTime\": \"2017-07-24T22:38:47.103032Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg18757/providers/Microsoft.DataLakeStore/accounts/testadlfs13551\",\r\n \"name\": \"testadlfs13551\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake11106.azuredatalakestore.net\",\r\n \"accountId\": \"cde93351-c54a-46d9-9b19-60791bf97092\",\r\n \"creationTime\": \"2017-07-24T22:39:23.5734731Z\",\r\n \"lastModifiedTime\": \"2017-07-24T22:40:00.0277479Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg18757/providers/Microsoft.DataLakeStore/accounts/testdatalake11106\",\r\n \"name\": \"testdatalake11106\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake11106acct2.azuredatalakestore.net\",\r\n \"accountId\": \"28ee9e1c-5174-4781-b7e9-79145fc02b37\",\r\n \"creationTime\": \"2017-07-24T22:40:01.7884543Z\",\r\n \"lastModifiedTime\": \"2017-07-24T22:40:01.7884543Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg18757/providers/Microsoft.DataLakeStore/accounts/testdatalake11106acct2\",\r\n \"name\": \"testdatalake11106acct2\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1513,7 +1537,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:02:48 GMT" + "Mon, 24 Jul 2017 22:40:33 GMT" ], "Pragma": [ "no-cache" @@ -1525,7 +1549,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "ff48ca25-3f8e-4c32-8d8e-3ab40e25bf8e" + "b477829a-d2b0-4089-9dd5-08750c2e03b6" ], "X-Content-Type-Options": [ "nosniff" @@ -1537,13 +1561,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14990" ], "x-ms-correlation-request-id": [ - "1b432143-5e72-4eeb-96c0-dbb495d93601" + "2dcbd41b-c50d-4677-92cf-35ba055166bd" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180248Z:1b432143-5e72-4eeb-96c0-dbb495d93601" + "WESTUS2:20170724T224034Z:2dcbd41b-c50d-4677-92cf-35ba055166bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1552,22 +1576,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzYxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg18757/providers/Microsoft.DataLakeStore/accounts?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODc1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e4d9ca1e-fe18-4f86-9517-6a172b3eb77f" + "e0c39da4-f263-4e3d-bc87-b22e2831baf1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs13551.azuredatalakestore.net\",\r\n \"accountId\": \"13c66116-dd85-4067-abc7-573cb495ce0e\",\r\n \"creationTime\": \"2017-07-24T22:38:47.103032Z\",\r\n \"lastModifiedTime\": \"2017-07-24T22:38:47.103032Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg18757/providers/Microsoft.DataLakeStore/accounts/testadlfs13551\",\r\n \"name\": \"testadlfs13551\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake11106.azuredatalakestore.net\",\r\n \"accountId\": \"cde93351-c54a-46d9-9b19-60791bf97092\",\r\n \"creationTime\": \"2017-07-24T22:39:23.5734731Z\",\r\n \"lastModifiedTime\": \"2017-07-24T22:40:00.0277479Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg18757/providers/Microsoft.DataLakeStore/accounts/testdatalake11106\",\r\n \"name\": \"testdatalake11106\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake11106acct2.azuredatalakestore.net\",\r\n \"accountId\": \"28ee9e1c-5174-4781-b7e9-79145fc02b37\",\r\n \"creationTime\": \"2017-07-24T22:40:01.7884543Z\",\r\n \"lastModifiedTime\": \"2017-07-24T22:40:01.7884543Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg18757/providers/Microsoft.DataLakeStore/accounts/testdatalake11106acct2\",\r\n \"name\": \"testdatalake11106acct2\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1582,7 +1607,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:02:48 GMT" + "Mon, 24 Jul 2017 22:40:35 GMT" ], "Pragma": [ "no-cache" @@ -1594,7 +1619,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "c104fa84-d831-453f-8fcd-938c958a71f4" + "cda8444b-cf85-41a5-87ad-d8e1f991ae2f" ], "X-Content-Type-Options": [ "nosniff" @@ -1606,13 +1631,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14989" ], "x-ms-correlation-request-id": [ - "d789f7cc-a846-4a32-9dfe-a4aea3dbbfc0" + "54ce8981-4f82-4544-bafd-b4df739ef40d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180249Z:d789f7cc-a846-4a32-9dfe-a4aea3dbbfc0" + "WESTUS2:20170724T224035Z:54ce8981-4f82-4544-bafd-b4df739ef40d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1621,19 +1646,20 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzYxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTMyOTk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg18757/providers/Microsoft.DataLakeStore/accounts/testdatalake11106?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODc1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTExMDY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6a5f9fc5-b175-406b-99be-a34c50a2ce8e" + "541e7d23-d945-4ac7-9407-5043f3cb5e21" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, "ResponseBody": "", @@ -1651,7 +1677,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:02:51 GMT" + "Mon, 24 Jul 2017 22:40:38 GMT" ], "Pragma": [ "no-cache" @@ -1660,7 +1686,7 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "b47649b8-c078-4252-b970-146429b09aea" + "15f72e0e-4dbb-4118-8d61-b29b5734f5bc" ], "X-AspNet-Version": [ "4.0.30319" @@ -1669,13 +1695,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-correlation-request-id": [ - "edb87d6e-4f04-49b1-8803-13822b7510ec" + "d9f088ca-0488-4035-aaa2-9649a2417610" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180251Z:edb87d6e-4f04-49b1-8803-13822b7510ec" + "WESTUS2:20170724T224039Z:d9f088ca-0488-4035-aaa2-9649a2417610" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1684,19 +1710,20 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzYxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTMyOTk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg18757/providers/Microsoft.DataLakeStore/accounts/testdatalake11106?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODc1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTExMDY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b10171a5-9338-4a01-9e32-7f39d2afdffe" + "5c01dac4-e945-43bc-8b4c-e15aab6d18c8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, "ResponseBody": "", @@ -1708,7 +1735,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:02:51 GMT" + "Mon, 24 Jul 2017 22:40:39 GMT" ], "Pragma": [ "no-cache" @@ -1717,13 +1744,13 @@ "1199" ], "x-ms-request-id": [ - "1c39b39a-99d1-42a5-9dd8-8d7569b8e732" + "0f04e1c1-3a01-480c-a92f-c915577b7460" ], "x-ms-correlation-request-id": [ - "1c39b39a-99d1-42a5-9dd8-8d7569b8e732" + "0f04e1c1-3a01-480c-a92f-c915577b7460" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180252Z:1c39b39a-99d1-42a5-9dd8-8d7569b8e732" + "WESTUS2:20170724T224039Z:0f04e1c1-3a01-480c-a92f-c915577b7460" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1732,19 +1759,20 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzYxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTMyOTk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg18757/providers/Microsoft.DataLakeStore/accounts/testdatalake11106?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODc1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTExMDY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ec605638-aed7-45e9-86aa-74117f058aaf" + "57c7a102-2f95-4a25-b265-7cbbde48ffaa" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, "ResponseBody": "", @@ -1756,7 +1784,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:02:51 GMT" + "Mon, 24 Jul 2017 22:40:39 GMT" ], "Pragma": [ "no-cache" @@ -1765,13 +1793,13 @@ "1198" ], "x-ms-request-id": [ - "c8beafcb-9a3e-4a0e-85d1-48b56e81106a" + "15f39219-443c-4715-8c37-954d4f762d5f" ], "x-ms-correlation-request-id": [ - "c8beafcb-9a3e-4a0e-85d1-48b56e81106a" + "15f39219-443c-4715-8c37-954d4f762d5f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180252Z:c8beafcb-9a3e-4a0e-85d1-48b56e81106a" + "WESTUS2:20170724T224039Z:15f39219-443c-4715-8c37-954d4f762d5f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1782,12 +1810,12 @@ ], "Names": { ".ctor": [ - "datalakerg17619", - "testdatalake13299", - "testadlfs13480" + "datalakerg18757", + "testdatalake11106", + "testadlfs13551" ] }, "Variables": { - "SubscriptionId": "53d9063d-87ae-4ea8-be90-3686c3b8669f" + "SubscriptionId": "04319d6d-4a66-4701-bb2f-e7dbbd9ae4db" } } \ No newline at end of file diff --git a/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.AccountOperationTests/FirewallAndTrustedProviderTest.json b/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.AccountOperationTests/FirewallAndTrustedProviderTest.json index 18fb1a6caac0..ea780cee3c76 100644 --- a/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.AccountOperationTests/FirewallAndTrustedProviderTest.json +++ b/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.AccountOperationTests/FirewallAndTrustedProviderTest.json @@ -1,22 +1,23 @@ { "Entries": [ { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a8e40d24-a397-4bf5-9380-3b125e8ace49" + "e02bf41b-b40e-4bf9-9e63-5e003696b48e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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" @@ -28,7 +29,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:27:54 GMT" + "Mon, 24 Jul 2017 22:37:06 GMT" ], "Pragma": [ "no-cache" @@ -40,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-request-id": [ - "6b21d90e-6e97-4c98-b4a6-912efda49fe4" + "00157856-3576-45ce-a1af-e3ec7bfa3d1c" ], "x-ms-correlation-request-id": [ - "6b21d90e-6e97-4c98-b4a6-912efda49fe4" + "00157856-3576-45ce-a1af-e3ec7bfa3d1c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T182755Z:6b21d90e-6e97-4c98-b4a6-912efda49fe4" + "WESTUS2:20170724T223707Z:00157856-3576-45ce-a1af-e3ec7bfa3d1c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -58,22 +59,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "61e63ce8-234f-4786-82ea-ee5aa11d7012" + "296a80a8-ffea-4a51-abfb-5e2a43d868ca" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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" @@ -85,7 +87,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:27:54 GMT" + "Mon, 24 Jul 2017 22:37:07 GMT" ], "Pragma": [ "no-cache" @@ -94,16 +96,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14988" ], "x-ms-request-id": [ - "07b3ba63-4776-4abc-b588-f030f03c7e6f" + "409667b6-9911-4f75-a9f5-a3d32d0e5278" ], "x-ms-correlation-request-id": [ - "07b3ba63-4776-4abc-b588-f030f03c7e6f" + "409667b6-9911-4f75-a9f5-a3d32d0e5278" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T182755Z:07b3ba63-4776-4abc-b588-f030f03c7e6f" + "WESTUS2:20170724T223707Z:409667b6-9911-4f75-a9f5-a3d32d0e5278" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -112,22 +114,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "354a933f-239d-4c13-8f7c-4085f8608f72" + "322ffd11-c1a0-4aae-83a3-3965fae2c543" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/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 \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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 \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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,7 +142,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:27:55 GMT" + "Mon, 24 Jul 2017 22:37:07 GMT" ], "Pragma": [ "no-cache" @@ -151,16 +154,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1198" ], "x-ms-request-id": [ - "d2912a3b-650e-4a4a-8331-3c62fb58285b" + "c5ccd3e7-60c1-4f1e-bf8a-76b45156bb72" ], "x-ms-correlation-request-id": [ - "d2912a3b-650e-4a4a-8331-3c62fb58285b" + "c5ccd3e7-60c1-4f1e-bf8a-76b45156bb72" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T182756Z:d2912a3b-650e-4a4a-8331-3c62fb58285b" + "WESTUS2:20170724T223708Z:c5ccd3e7-60c1-4f1e-bf8a-76b45156bb72" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -169,22 +172,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4801a0be-db84-45ab-8644-2484c08766d9" + "74f50605-68cb-4ff4-966b-06d16fabdb35" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/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 \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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 \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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" @@ -196,7 +200,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:27:56 GMT" + "Mon, 24 Jul 2017 22:37:08 GMT" ], "Pragma": [ "no-cache" @@ -205,16 +209,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14987" ], "x-ms-request-id": [ - "18cf8909-36b2-4b95-a34d-d176efeb3e49" + "a3c561b2-41f8-4eaa-8dd0-5bf0ffe3bd17" ], "x-ms-correlation-request-id": [ - "18cf8909-36b2-4b95-a34d-d176efeb3e49" + "a3c561b2-41f8-4eaa-8dd0-5bf0ffe3bd17" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T182756Z:18cf8909-36b2-4b95-a34d-d176efeb3e49" + "WESTUS2:20170724T223708Z:a3c561b2-41f8-4eaa-8dd0-5bf0ffe3bd17" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -223,22 +227,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13455?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzQ1NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg14892?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNDg5Mj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d7b23bed-5931-4b12-bb86-1fe27fa34c65" + "25337c8f-89b5-4f4b-9684-8467da3093b8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg13455' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg14892' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -253,7 +258,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:27:56 GMT" + "Mon, 24 Jul 2017 22:37:08 GMT" ], "Pragma": [ "no-cache" @@ -262,16 +267,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14986" ], "x-ms-request-id": [ - "83b8f8b9-0202-4813-906d-340181de92f5" + "adc1c3d5-51fe-4942-82dd-e8374bf91b0f" ], "x-ms-correlation-request-id": [ - "83b8f8b9-0202-4813-906d-340181de92f5" + "adc1c3d5-51fe-4942-82dd-e8374bf91b0f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T182756Z:83b8f8b9-0202-4813-906d-340181de92f5" + "WESTUS2:20170724T223709Z:adc1c3d5-51fe-4942-82dd-e8374bf91b0f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -280,22 +285,23 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13455?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzQ1NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg14892?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNDg5Mj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "83a5dbc5-9f5b-4a24-8e06-acf22fd98e23" + "7008a020-56db-459e-ab40-ac9fb53329fd" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg14892\",\r\n \"name\": \"datalakerg14892\",\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 +313,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:27:57 GMT" + "Mon, 24 Jul 2017 22:37:10 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +322,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14985" ], "x-ms-request-id": [ - "9623a54a-4cc2-4c96-b424-79077d0503f9" + "df7f8373-44f5-4efa-86c6-300fcee6391e" ], "x-ms-correlation-request-id": [ - "9623a54a-4cc2-4c96-b424-79077d0503f9" + "df7f8373-44f5-4efa-86c6-300fcee6391e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T182758Z:9623a54a-4cc2-4c96-b424-79077d0503f9" + "WESTUS2:20170724T223710Z:df7f8373-44f5-4efa-86c6-300fcee6391e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +340,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13455?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzQ1NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg14892?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNDg5Mj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,16 +352,17 @@ "31" ], "x-ms-client-request-id": [ - "bec18699-6b0e-4335-9fef-bc52004c77d1" + "b7b9a77f-16ce-492c-a2c0-c8dea1d6bbde" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg14892\",\r\n \"name\": \"datalakerg14892\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -370,22 +377,22 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:27:57 GMT" + "Mon, 24 Jul 2017 22:37:10 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1197" ], "x-ms-request-id": [ - "2d930518-93aa-4cbf-b663-aa4f84fac7dc" + "e0c902e6-3c97-4ece-8103-53b95fa7667b" ], "x-ms-correlation-request-id": [ - "2d930518-93aa-4cbf-b663-aa4f84fac7dc" + "e0c902e6-3c97-4ece-8103-53b95fa7667b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T182758Z:2d930518-93aa-4cbf-b663-aa4f84fac7dc" + "WESTUS2:20170724T223710Z:e0c902e6-3c97-4ece-8103-53b95fa7667b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -394,25 +401,26 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/testadlfs17607?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc2MDc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg14892/providers/Microsoft.DataLakeStore/accounts/testadlfs1866?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDg5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTg2Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ce268e2d-be35-4631-9601-d0984d7d8453" + "8bbb42cb-71d6-4d48-81b3-a6f26e530f2b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs1866' under resource group 'datalakerg14892' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "166" + "165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -424,7 +432,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:27:57 GMT" + "Mon, 24 Jul 2017 22:37:10 GMT" ], "Pragma": [ "no-cache" @@ -433,13 +441,13 @@ "gateway" ], "x-ms-request-id": [ - "457df470-58b5-4aa8-a78a-1f317aa04cb7" + "05ee3776-c3f0-4100-a165-a2c7432c86c2" ], "x-ms-correlation-request-id": [ - "457df470-58b5-4aa8-a78a-1f317aa04cb7" + "05ee3776-c3f0-4100-a165-a2c7432c86c2" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T182758Z:457df470-58b5-4aa8-a78a-1f317aa04cb7" + "WESTUS2:20170724T223711Z:05ee3776-c3f0-4100-a165-a2c7432c86c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -448,16 +456,17 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/testadlfs17607?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc2MDc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg14892/providers/Microsoft.DataLakeStore/accounts/testadlfs1866?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDg5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTg2Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"testadlfs1866.azuredatalakestore.net\",\r\n \"accountId\": \"01bd56c2-d1f2-4099-af38-99ae9e1e92fe\",\r\n \"creationTime\": \"2017-07-24T22:37:16.9871133Z\",\r\n \"lastModifiedTime\": \"2017-07-24T22:37:16.9871133Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg14892/providers/Microsoft.DataLakeStore/accounts/testadlfs1866\",\r\n \"name\": \"testadlfs1866\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -472,7 +481,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:28:31 GMT" + "Mon, 24 Jul 2017 22:37:45 GMT" ], "Pragma": [ "no-cache" @@ -484,7 +493,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "00ea498c-3a76-4b0f-be66-f7cc93d7f681" + "067a88f3-e29f-4164-b62f-f2fb6ca0ace7" ], "X-Content-Type-Options": [ "nosniff" @@ -496,13 +505,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14995" ], "x-ms-correlation-request-id": [ - "f941cf98-25dc-4dd2-b251-e42d690dfad3" + "41fa0928-6a6c-47cb-a8ec-bd3bcd63d516" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T182831Z:f941cf98-25dc-4dd2-b251-e42d690dfad3" + "WESTUS2:20170724T223745Z:41fa0928-6a6c-47cb-a8ec-bd3bcd63d516" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -511,22 +520,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/testadlfs17607?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc2MDc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg14892/providers/Microsoft.DataLakeStore/accounts/testadlfs1866?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDg5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTg2Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "654d2565-e5cd-472f-ba67-4353ecbc161f" + "31af60b3-6123-4e9c-b526-7c9952f0d70f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"testadlfs1866.azuredatalakestore.net\",\r\n \"accountId\": \"01bd56c2-d1f2-4099-af38-99ae9e1e92fe\",\r\n \"creationTime\": \"2017-07-24T22:37:16.9871133Z\",\r\n \"lastModifiedTime\": \"2017-07-24T22:37:16.9871133Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg14892/providers/Microsoft.DataLakeStore/accounts/testadlfs1866\",\r\n \"name\": \"testadlfs1866\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -541,7 +551,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:28:32 GMT" + "Mon, 24 Jul 2017 22:37:45 GMT" ], "Pragma": [ "no-cache" @@ -553,7 +563,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "be834e95-3b22-4472-86a3-6b2c252cb494" + "6ed12ffa-1329-40d5-87da-d65d34e4056b" ], "X-Content-Type-Options": [ "nosniff" @@ -565,13 +575,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14988" ], "x-ms-correlation-request-id": [ - "3a0493b9-d0f3-4dc8-8152-4c12157df1af" + "f21d4b30-8b13-48ee-8a5a-882d15805781" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T182832Z:3a0493b9-d0f3-4dc8-8152-4c12157df1af" + "WESTUS2:20170724T223746Z:f21d4b30-8b13-48ee-8a5a-882d15805781" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -580,8 +590,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/testadlfs17607?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc2MDc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg14892/providers/Microsoft.DataLakeStore/accounts/testadlfs1866?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDg5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTg2Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -592,19 +602,20 @@ "31" ], "x-ms-client-request-id": [ - "05e4ee45-5f7b-43dc-b4d2-8deaf396dd83" + "7303e7a1-46de-426c-9508-27f584ad14c7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"01bd56c2-d1f2-4099-af38-99ae9e1e92fe\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg14892/providers/Microsoft.DataLakeStore/accounts/testadlfs1866\",\r\n \"name\": \"testadlfs1866\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "420" + "418" ], "Content-Type": [ "application/json" @@ -619,13 +630,13 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:27:59 GMT" + "Mon, 24 Jul 2017 22:37:13 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/testadlfs17607/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg14892/providers/Microsoft.DataLakeStore/accounts/testadlfs1866/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -634,10 +645,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "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" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/01bd56c2-d1f2-4099-af38-99ae9e1e92fe0?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "ff27fa7d-c3a0-44c3-9be0-acf14ca68bac" + "8edfd795-ca40-4bc2-8134-3192ef4bab8c" ], "X-Content-Type-Options": [ "nosniff" @@ -649,13 +660,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1199" ], "x-ms-correlation-request-id": [ - "651b3430-5c42-49ea-a109-09367abdd40c" + "5f82f03a-9105-4de9-a92a-4b40b8db072e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T182800Z:651b3430-5c42-49ea-a109-09367abdd40c" + "WESTUS2:20170724T223714Z:5f82f03a-9105-4de9-a92a-4b40b8db072e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -664,13 +675,14 @@ "StatusCode": 201 }, { - "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", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/01bd56c2-d1f2-4099-af38-99ae9e1e92fe0?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzAxYmQ1NmMyLWQxZjItNDA5OS1hZjM4LTk5YWU5ZTFlOTJmZTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -688,7 +700,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:28:30 GMT" + "Mon, 24 Jul 2017 22:37:44 GMT" ], "Pragma": [ "no-cache" @@ -700,7 +712,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "f2d9b877-039c-42be-b820-79de77eab8e5" + "5908b4ca-a061-4233-b68d-cd9006c650b6" ], "X-Content-Type-Options": [ "nosniff" @@ -712,13 +724,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14993" ], "x-ms-correlation-request-id": [ - "f5a30cc6-ee31-4ab8-bd5d-673eb0fa9c0e" + "2a9ed955-cdff-4274-b1ee-e792e0b1d9ee" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T182831Z:f5a30cc6-ee31-4ab8-bd5d-673eb0fa9c0e" + "WESTUS2:20170724T223744Z:2a9ed955-cdff-4274-b1ee-e792e0b1d9ee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -727,10 +739,10 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/adlsacct7386?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q3Mzg2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg14892/providers/Microsoft.DataLakeStore/accounts/adlsacct1934?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDg5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3QxOTM0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", - "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}", + "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\": \"firerule13657\"\r\n }\r\n ],\r\n \"trustedIdProviderState\": \"Enabled\",\r\n \"trustedIdProviders\": [\r\n {\r\n \"properties\": {\r\n \"idProvider\": \"https://sts.windows.net/83ad738e-4a30-4400-8cb3-4adc870f40df\"\r\n },\r\n \"name\": \"trustedrule19187\"\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" @@ -739,16 +751,17 @@ "588" ], "x-ms-client-request-id": [ - "a7a92e2e-628b-4d26-a66f-1387af408de0" + "0bb4c83b-5fc2-4f31-890e-41798eb0a780" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "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\": \"firerule13657\"\r\n }\r\n ],\r\n \"trustedIdProviderState\": \"Enabled\",\r\n \"trustedIdProviders\": [\r\n {\r\n \"properties\": {\r\n \"idProvider\": \"https://sts.windows.net/83ad738e-4a30-4400-8cb3-4adc870f40df\"\r\n },\r\n \"name\": \"trustedrule19187\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"3af00787-cce1-43a5-9dd9-27137ed7c769\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg14892/providers/Microsoft.DataLakeStore/accounts/adlsacct1934\",\r\n \"name\": \"adlsacct1934\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "767" @@ -766,13 +779,13 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:28:35 GMT" + "Mon, 24 Jul 2017 22:37:50 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/adlsacct7386/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg14892/providers/Microsoft.DataLakeStore/accounts/adlsacct1934/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -781,10 +794,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "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" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/3af00787-cce1-43a5-9dd9-27137ed7c7690?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "07a12dc2-f886-4834-aa79-db60139187b2" + "78ef4cb3-90c3-46e0-90d8-d1b0138945c3" ], "X-Content-Type-Options": [ "nosniff" @@ -796,13 +809,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1199" ], "x-ms-correlation-request-id": [ - "5a34b7f5-8c64-49e4-b322-931d37370c3e" + "f3c74fdc-443f-4a63-b6f0-694be1bf05f1" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T182835Z:5a34b7f5-8c64-49e4-b322-931d37370c3e" + "WESTUS2:20170724T223750Z:f3c74fdc-443f-4a63-b6f0-694be1bf05f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -811,13 +824,14 @@ "StatusCode": 201 }, { - "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", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/3af00787-cce1-43a5-9dd9-27137ed7c7690?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzNhZjAwNzg3LWNjZTEtNDNhNS05ZGQ5LTI3MTM3ZWQ3Yzc2OTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -835,7 +849,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:29:05 GMT" + "Mon, 24 Jul 2017 22:38:19 GMT" ], "Pragma": [ "no-cache" @@ -847,7 +861,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "76b1bfd0-fc66-4b39-8093-e71afb2c3113" + "0c328e2b-5422-4a7f-89be-e6641a90fb7a" ], "X-Content-Type-Options": [ "nosniff" @@ -859,13 +873,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14983" ], "x-ms-correlation-request-id": [ - "3efaa844-64d9-4c74-98d1-c7fe8253eec3" + "0047429f-a537-4233-9a1c-1b88f5f2e4d1" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T182906Z:3efaa844-64d9-4c74-98d1-c7fe8253eec3" + "WESTUS2:20170724T223820Z:0047429f-a537-4233-9a1c-1b88f5f2e4d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -874,16 +888,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/adlsacct7386?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q3Mzg2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg14892/providers/Microsoft.DataLakeStore/accounts/adlsacct1934?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDg5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3QxOTM0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "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\": \"firerule13657\"\r\n }\r\n ],\r\n \"trustedIdProviderState\": \"Enabled\",\r\n \"trustedIdProviders\": [\r\n {\r\n \"properties\": {\r\n \"idProvider\": \"https://sts.windows.net/83ad738e-4a30-4400-8cb3-4adc870f40df\"\r\n },\r\n \"name\": \"trustedrule19187\"\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\": \"adlsacct1934.azuredatalakestore.net\",\r\n \"accountId\": \"3af00787-cce1-43a5-9dd9-27137ed7c769\",\r\n \"creationTime\": \"2017-07-24T22:37:52.4411327Z\",\r\n \"lastModifiedTime\": \"2017-07-24T22:37:52.4411327Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg14892/providers/Microsoft.DataLakeStore/accounts/adlsacct1934\",\r\n \"name\": \"adlsacct1934\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -898,7 +913,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:29:06 GMT" + "Mon, 24 Jul 2017 22:38:21 GMT" ], "Pragma": [ "no-cache" @@ -910,7 +925,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "ff92568b-ccba-422b-bd0d-f37a8b3c7aab" + "17b03e0b-adf5-47c8-9055-a061acdb39f6" ], "X-Content-Type-Options": [ "nosniff" @@ -922,13 +937,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14990" ], "x-ms-correlation-request-id": [ - "40b01319-37ef-49bf-953f-c6ca4e8659fc" + "95ad04c5-cb3e-44e9-a31d-456c75daf015" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T182906Z:40b01319-37ef-49bf-953f-c6ca4e8659fc" + "WESTUS2:20170724T223821Z:95ad04c5-cb3e-44e9-a31d-456c75daf015" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -937,22 +952,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/adlsacct7386?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q3Mzg2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg14892/providers/Microsoft.DataLakeStore/accounts/adlsacct1934?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDg5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3QxOTM0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "15abfb97-6dcd-4490-8bbe-4234d6f5824c" + "1f1d7399-b50f-4f02-9deb-e699228f239c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "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\": \"firerule13657\"\r\n }\r\n ],\r\n \"trustedIdProviderState\": \"Enabled\",\r\n \"trustedIdProviders\": [\r\n {\r\n \"properties\": {\r\n \"idProvider\": \"https://sts.windows.net/83ad738e-4a30-4400-8cb3-4adc870f40df\"\r\n },\r\n \"name\": \"trustedrule19187\"\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\": \"adlsacct1934.azuredatalakestore.net\",\r\n \"accountId\": \"3af00787-cce1-43a5-9dd9-27137ed7c769\",\r\n \"creationTime\": \"2017-07-24T22:37:52.4411327Z\",\r\n \"lastModifiedTime\": \"2017-07-24T22:37:52.4411327Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg14892/providers/Microsoft.DataLakeStore/accounts/adlsacct1934\",\r\n \"name\": \"adlsacct1934\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -967,7 +983,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:29:06 GMT" + "Mon, 24 Jul 2017 22:38:21 GMT" ], "Pragma": [ "no-cache" @@ -979,7 +995,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "8ad12c96-5f01-43c2-82ba-bd41b081b283" + "90e96eca-3f50-47a9-9d27-0bbe7c977b25" ], "X-Content-Type-Options": [ "nosniff" @@ -991,13 +1007,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14992" ], "x-ms-correlation-request-id": [ - "e68a8724-6b94-4794-ae49-4544fa732a53" + "5971b796-858f-4aa6-a71e-663c3adc8059" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T182907Z:e68a8724-6b94-4794-ae49-4544fa732a53" + "WESTUS2:20170724T223822Z:5971b796-858f-4aa6-a71e-663c3adc8059" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1006,22 +1022,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/adlsacct7386/firewallRules/firerule17352?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q3Mzg2L2ZpcmV3YWxsUnVsZXMvZmlyZXJ1bGUxNzM1Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg14892/providers/Microsoft.DataLakeStore/accounts/adlsacct1934/firewallRules/firerule13657?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDg5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3QxOTM0L2ZpcmV3YWxsUnVsZXMvZmlyZXJ1bGUxMzY1Nz9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "688bec39-4215-43db-9839-c6288ef43ae6" + "f90250df-ee9f-48e4-b68f-cb07b6a43e08" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg14892/providers/Microsoft.DataLakeStore/accounts/adlsacct1934/firewallRules/firerule13657\",\r\n \"name\": \"firerule13657\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts/firewallRules\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1036,7 +1053,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:29:06 GMT" + "Mon, 24 Jul 2017 22:38:22 GMT" ], "Pragma": [ "no-cache" @@ -1048,7 +1065,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "8723d68e-b00d-43e1-b0d2-fd05f80e16a4" + "97f1d8e3-e292-48ce-88fa-241119f6b5e5" ], "X-Content-Type-Options": [ "nosniff" @@ -1060,13 +1077,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14992" ], "x-ms-correlation-request-id": [ - "670c24fe-81ec-445f-9db7-cada085fdf42" + "9c80f023-89e8-42b6-983d-9b9bc149809b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T182907Z:670c24fe-81ec-445f-9db7-cada085fdf42" + "WESTUS2:20170724T223823Z:9c80f023-89e8-42b6-983d-9b9bc149809b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1075,25 +1092,26 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/adlsacct7386/firewallRules/firerule17352?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q3Mzg2L2ZpcmV3YWxsUnVsZXMvZmlyZXJ1bGUxNzM1Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg14892/providers/Microsoft.DataLakeStore/accounts/adlsacct1934/firewallRules/firerule13657?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDg5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3QxOTM0L2ZpcmV3YWxsUnVsZXMvZmlyZXJ1bGUxMzY1Nz9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2b1f7e3d-e05f-465b-93a3-2c2f7ae8e87d" + "10437c54-9510-4768-b278-ffc215de1121" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Firewall Rule does not exist.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NestedResourceNotFound\",\r\n \"message\": \"Nested resource does not exist.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "79" + "87" ], "Content-Type": [ "application/json" @@ -1108,7 +1126,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:29:10 GMT" + "Mon, 24 Jul 2017 22:38:25 GMT" ], "Pragma": [ "no-cache" @@ -1117,7 +1135,7 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "75955d29-9ad6-40a8-9c72-76d4673c28fd" + "80990bfe-088d-4fb4-886b-6e7d35cecb18" ], "X-Content-Type-Options": [ "nosniff" @@ -1129,13 +1147,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14989" ], "x-ms-correlation-request-id": [ - "605f5ad4-ca06-41fd-9ab8-b8bcbd520a11" + "afd069b4-44d0-4eeb-9ce8-7030c3f8c35c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T182910Z:605f5ad4-ca06-41fd-9ab8-b8bcbd520a11" + "WESTUS2:20170724T223826Z:afd069b4-44d0-4eeb-9ce8-7030c3f8c35c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1144,10 +1162,10 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/adlsacct7386/firewallRules/firerule17352?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q3Mzg2L2ZpcmV3YWxsUnVsZXMvZmlyZXJ1bGUxNzM1Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg14892/providers/Microsoft.DataLakeStore/accounts/adlsacct1934/firewallRules/firerule13657?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDg5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3QxOTM0L2ZpcmV3YWxsUnVsZXMvZmlyZXJ1bGUxMzY1Nz9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", - "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}", + "RequestBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"192.168.0.0\",\r\n \"endIpAddress\": \"192.168.0.1\"\r\n },\r\n \"name\": \"firerule13657\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1156,16 +1174,17 @@ "129" ], "x-ms-client-request-id": [ - "1160a73a-405c-44b5-a60c-7496304a0bc5" + "a9672b3e-3355-4837-820a-7c9617787147" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"192.168.0.0\",\r\n \"endIpAddress\": \"192.168.0.1\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg14892/providers/Microsoft.DataLakeStore/accounts/adlsacct1934/firewallRules/firerule13657\",\r\n \"name\": \"firerule13657\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts/firewallRules\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1180,7 +1199,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:29:08 GMT" + "Mon, 24 Jul 2017 22:38:23 GMT" ], "Pragma": [ "no-cache" @@ -1192,7 +1211,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e2041550-1d1a-40db-a8a9-41e3f58d1722" + "a870fe7e-fee4-4b79-9698-3752daacce76" ], "X-Content-Type-Options": [ "nosniff" @@ -1204,13 +1223,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1199" ], "x-ms-correlation-request-id": [ - "7c103cdb-8785-4b61-874c-b2ea66ec9997" + "0fae5871-f581-4fb6-bda2-5cb6bd81e850" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T182908Z:7c103cdb-8785-4b61-874c-b2ea66ec9997" + "WESTUS2:20170724T223823Z:0fae5871-f581-4fb6-bda2-5cb6bd81e850" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1219,8 +1238,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/adlsacct7386/firewallRules/firerule17352?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q3Mzg2L2ZpcmV3YWxsUnVsZXMvZmlyZXJ1bGUxNzM1Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg14892/providers/Microsoft.DataLakeStore/accounts/adlsacct1934/firewallRules/firerule13657?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDg5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3QxOTM0L2ZpcmV3YWxsUnVsZXMvZmlyZXJ1bGUxMzY1Nz9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\"\r\n }\r\n}", "RequestHeaders": { @@ -1231,16 +1250,17 @@ "63" ], "x-ms-client-request-id": [ - "b5e856c0-6b69-4ab7-adb5-1896b09075ae" + "f93ae770-c2ed-401f-9856-bb8aabdb88cb" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"192.168.0.1\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg14892/providers/Microsoft.DataLakeStore/accounts/adlsacct1934/firewallRules/firerule13657\",\r\n \"name\": \"firerule13657\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts/firewallRules\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1255,7 +1275,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:29:08 GMT" + "Mon, 24 Jul 2017 22:38:24 GMT" ], "Pragma": [ "no-cache" @@ -1267,7 +1287,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "b05483ee-074d-4b40-b97a-0ecc7eead03c" + "31f3d8e9-9edd-4acc-943a-3e1b1c21fc78" ], "X-Content-Type-Options": [ "nosniff" @@ -1279,13 +1299,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1199" ], "x-ms-correlation-request-id": [ - "d451945a-15aa-4fb3-ad98-94d7d3a0554d" + "356d80c7-632d-4fea-8df2-7ccd23186d2f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T182909Z:d451945a-15aa-4fb3-ad98-94d7d3a0554d" + "WESTUS2:20170724T223824Z:356d80c7-632d-4fea-8df2-7ccd23186d2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1294,19 +1314,20 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/adlsacct7386/firewallRules/firerule17352?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q3Mzg2L2ZpcmV3YWxsUnVsZXMvZmlyZXJ1bGUxNzM1Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg14892/providers/Microsoft.DataLakeStore/accounts/adlsacct1934/firewallRules/firerule13657?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDg5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3QxOTM0L2ZpcmV3YWxsUnVsZXMvZmlyZXJ1bGUxMzY1Nz9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "45e63743-1c41-4851-95c7-aae6b3b39118" + "98b8782a-4132-4e02-bebd-c160b66a9fd0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, "ResponseBody": "", @@ -1324,7 +1345,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:29:09 GMT" + "Mon, 24 Jul 2017 22:38:24 GMT" ], "Pragma": [ "no-cache" @@ -1333,7 +1354,7 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "6a450578-f3a4-4f4a-91bb-d991b59afae6" + "47cf4f6e-ec2d-460e-858b-4fd5db8ec8bd" ], "X-AspNet-Version": [ "4.0.30319" @@ -1342,13 +1363,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1198" ], "x-ms-correlation-request-id": [ - "e2c68f6e-d108-4168-8032-2fc87b284203" + "dd8a9b94-a36c-4cfc-b4e4-8fb2fddee101" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T182910Z:e2c68f6e-d108-4168-8032-2fc87b284203" + "WESTUS2:20170724T223825Z:dd8a9b94-a36c-4cfc-b4e4-8fb2fddee101" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1357,22 +1378,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/adlsacct7386/trustedIdProviders/trustedrule17110?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q3Mzg2L3RydXN0ZWRJZFByb3ZpZGVycy90cnVzdGVkcnVsZTE3MTEwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg14892/providers/Microsoft.DataLakeStore/accounts/adlsacct1934/trustedIdProviders/trustedrule19187?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDg5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3QxOTM0L3RydXN0ZWRJZFByb3ZpZGVycy90cnVzdGVkcnVsZTE5MTg3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "99556d6e-5ee1-4a1e-ab93-302e010c98f3" + "a3c41ea8-7c8a-4f72-b986-3c9278059486" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"idProvider\": \"https://sts.windows.net/83ad738e-4a30-4400-8cb3-4adc870f40df\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg14892/providers/Microsoft.DataLakeStore/accounts/adlsacct1934/trustedIdProviders/trustedrule19187\",\r\n \"name\": \"trustedrule19187\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts/trustedIdProviders\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1387,7 +1409,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:29:10 GMT" + "Mon, 24 Jul 2017 22:38:26 GMT" ], "Pragma": [ "no-cache" @@ -1399,7 +1421,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "2b0dad22-6a17-496d-8cef-8a1c5bb11e26" + "b19baf30-8ea8-44e0-bc0d-3e28d02fef17" ], "X-Content-Type-Options": [ "nosniff" @@ -1411,13 +1433,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14998" ], "x-ms-correlation-request-id": [ - "a0103ed0-7a7b-4272-ab96-7985bab89c35" + "bbff4482-7376-4491-a015-67ba1ade41a9" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T182911Z:a0103ed0-7a7b-4272-ab96-7985bab89c35" + "WESTUS2:20170724T223826Z:bbff4482-7376-4491-a015-67ba1ade41a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1426,25 +1448,26 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/adlsacct7386/trustedIdProviders/trustedrule17110?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q3Mzg2L3RydXN0ZWRJZFByb3ZpZGVycy90cnVzdGVkcnVsZTE3MTEwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg14892/providers/Microsoft.DataLakeStore/accounts/adlsacct1934/trustedIdProviders/trustedrule19187?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDg5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3QxOTM0L3RydXN0ZWRJZFByb3ZpZGVycy90cnVzdGVkcnVsZTE5MTg3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "777a104e-d4af-4cd6-b2c4-28d59c3bd4cb" + "05eccaff-77f8-494a-9fa5-725affef5dea" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Trusted IdProvider does not exist.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NestedResourceNotFound\",\r\n \"message\": \"Nested resource does not exist.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "84" + "87" ], "Content-Type": [ "application/json" @@ -1459,7 +1482,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:29:14 GMT" + "Mon, 24 Jul 2017 22:38:29 GMT" ], "Pragma": [ "no-cache" @@ -1468,7 +1491,7 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "93844d62-0748-41eb-9edb-4b702b2a9780" + "703dbfa4-ce80-4cd4-8fbd-f2b5c188c9f3" ], "X-Content-Type-Options": [ "nosniff" @@ -1480,13 +1503,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14991" ], "x-ms-correlation-request-id": [ - "8e224c7b-b4a7-4e34-bd6d-d3a963e2cb90" + "6f96c481-1bcd-41ed-b29b-32ccae0849fb" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T182914Z:8e224c7b-b4a7-4e34-bd6d-d3a963e2cb90" + "WESTUS2:20170724T223829Z:6f96c481-1bcd-41ed-b29b-32ccae0849fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1495,10 +1518,10 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/adlsacct7386/trustedIdProviders/trustedrule17110?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q3Mzg2L3RydXN0ZWRJZFByb3ZpZGVycy90cnVzdGVkcnVsZTE3MTEwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg14892/providers/Microsoft.DataLakeStore/accounts/adlsacct1934/trustedIdProviders/trustedrule19187?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDg5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3QxOTM0L3RydXN0ZWRJZFByb3ZpZGVycy90cnVzdGVkcnVsZTE5MTg3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"idProvider\": \"https://sts.windows.net/d78ea359-c98e-4993-b1b0-40f7e09b0770\"\r\n },\r\n \"name\": \"trustedrule17110\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"idProvider\": \"https://sts.windows.net/d2074bd9-41cc-4487-890c-050da0021966\"\r\n },\r\n \"name\": \"trustedrule19187\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1507,16 +1530,17 @@ "141" ], "x-ms-client-request-id": [ - "37496ce6-c9ee-4e16-bb0f-4d497089c329" + "aca2e46e-6cbc-4522-a9ca-8504f7b3cebe" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"idProvider\": \"https://sts.windows.net/d2074bd9-41cc-4487-890c-050da0021966\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg14892/providers/Microsoft.DataLakeStore/accounts/adlsacct1934/trustedIdProviders/trustedrule19187\",\r\n \"name\": \"trustedrule19187\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts/trustedIdProviders\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1531,7 +1555,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:29:11 GMT" + "Mon, 24 Jul 2017 22:38:26 GMT" ], "Pragma": [ "no-cache" @@ -1543,7 +1567,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "8e862a0f-16d9-47c6-b1c4-3e7445b1cd3e" + "77500a11-090d-4252-a6f7-6248f5c0ab95" ], "X-Content-Type-Options": [ "nosniff" @@ -1555,13 +1579,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1199" ], "x-ms-correlation-request-id": [ - "f0ea1dc7-0a2d-4c41-bbe1-08ccfff69392" + "c222c2c6-a2a6-4e8b-9b1b-cf5efbe62773" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T182912Z:f0ea1dc7-0a2d-4c41-bbe1-08ccfff69392" + "WESTUS2:20170724T223827Z:c222c2c6-a2a6-4e8b-9b1b-cf5efbe62773" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1570,10 +1594,10 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/adlsacct7386/trustedIdProviders/trustedrule17110?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q3Mzg2L3RydXN0ZWRJZFByb3ZpZGVycy90cnVzdGVkcnVsZTE3MTEwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg14892/providers/Microsoft.DataLakeStore/accounts/adlsacct1934/trustedIdProviders/trustedrule19187?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDg5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3QxOTM0L3RydXN0ZWRJZFByb3ZpZGVycy90cnVzdGVkcnVsZTE5MTg3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"idProvider\": \"https://sts.windows.net/ea9ec534-a3e3-4e45-ad36-3afc5bb291c1\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"idProvider\": \"https://sts.windows.net/83ad738e-4a30-4400-8cb3-4adc870f40df\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1582,16 +1606,17 @@ "110" ], "x-ms-client-request-id": [ - "0eeeeec6-9ea8-49a4-8b6b-ee9465a67aba" + "e3de9695-3fc1-416b-96c7-a6f737cf25a6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"idProvider\": \"https://sts.windows.net/83ad738e-4a30-4400-8cb3-4adc870f40df\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg14892/providers/Microsoft.DataLakeStore/accounts/adlsacct1934/trustedIdProviders/trustedrule19187\",\r\n \"name\": \"trustedrule19187\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts/trustedIdProviders\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1606,7 +1631,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:29:12 GMT" + "Mon, 24 Jul 2017 22:38:28 GMT" ], "Pragma": [ "no-cache" @@ -1618,7 +1643,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "6509d260-d65b-4386-bc38-6ab2fabfae04" + "fe7c9d4e-d9d8-44ee-9414-2a8f8ed282bd" ], "X-Content-Type-Options": [ "nosniff" @@ -1630,13 +1655,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1199" ], "x-ms-correlation-request-id": [ - "7d70df1f-50d6-40a9-99c9-332c14557e7d" + "822df771-7e02-4391-a68a-6667a777a991" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T182912Z:7d70df1f-50d6-40a9-99c9-332c14557e7d" + "WESTUS2:20170724T223828Z:822df771-7e02-4391-a68a-6667a777a991" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1645,19 +1670,20 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/adlsacct7386/trustedIdProviders/trustedrule17110?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q3Mzg2L3RydXN0ZWRJZFByb3ZpZGVycy90cnVzdGVkcnVsZTE3MTEwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg14892/providers/Microsoft.DataLakeStore/accounts/adlsacct1934/trustedIdProviders/trustedrule19187?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDg5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3QxOTM0L3RydXN0ZWRJZFByb3ZpZGVycy90cnVzdGVkcnVsZTE5MTg3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a2e739da-e437-43aa-a1dd-f6fe7e8b97c3" + "c4f56fe3-1d82-4958-b0e7-1f6c0c14fb34" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, "ResponseBody": "", @@ -1675,7 +1701,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:29:13 GMT" + "Mon, 24 Jul 2017 22:38:28 GMT" ], "Pragma": [ "no-cache" @@ -1684,7 +1710,7 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "237d1484-93d1-40bc-bef1-6e401a80474c" + "f6bb41ac-1078-484b-8d46-18d3323358e4" ], "X-AspNet-Version": [ "4.0.30319" @@ -1693,13 +1719,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1185" + "1199" ], "x-ms-correlation-request-id": [ - "86759272-9035-4536-ac5c-a48e59c1f88a" + "06b5276b-2f7c-4f34-8a2c-f0e47822d4df" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T182913Z:86759272-9035-4536-ac5c-a48e59c1f88a" + "WESTUS2:20170724T223829Z:06b5276b-2f7c-4f34-8a2c-f0e47822d4df" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1710,19 +1736,19 @@ ], "Names": { ".ctor": [ - "datalakerg13455", - "testdatalake1124", - "testadlfs17607" + "datalakerg14892", + "testdatalake11225", + "testadlfs1866" ], "FirewallAndTrustedProviderTest": [ - "firerule17352", - "ea9ec534-a3e3-4e45-ad36-3afc5bb291c1", - "trustedrule17110", - "adlsacct7386", - "d78ea359-c98e-4993-b1b0-40f7e09b0770" + "firerule13657", + "83ad738e-4a30-4400-8cb3-4adc870f40df", + "trustedrule19187", + "adlsacct1934", + "d2074bd9-41cc-4487-890c-050da0021966" ] }, "Variables": { - "SubscriptionId": "53d9063d-87ae-4ea8-be90-3686c3b8669f" + "SubscriptionId": "04319d6d-4a66-4701-bb2f-e7dbbd9ae4db" } } \ No newline at end of file diff --git a/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreDownloadUploadFileAndFolder.json b/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreDownloadUploadFileAndFolder.json index 603813460de8..7aaf6662d3cc 100644 --- a/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreDownloadUploadFileAndFolder.json +++ b/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreDownloadUploadFileAndFolder.json @@ -1,22 +1,23 @@ { "Entries": [ { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e9d175ed-975d-43da-9554-97318ed3cc07" + "735c4bf1-7311-4003-855b-214053ec5224" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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" @@ -28,7 +29,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 21:33:53 GMT" + "Mon, 24 Jul 2017 22:59:37 GMT" ], "Pragma": [ "no-cache" @@ -40,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1191" ], "x-ms-request-id": [ - "5ab4aff4-aa3b-4e3a-93a7-79f4e1ab8714" + "408d1132-5c01-4bcb-8840-f8245aa3a40f" ], "x-ms-correlation-request-id": [ - "5ab4aff4-aa3b-4e3a-93a7-79f4e1ab8714" + "408d1132-5c01-4bcb-8840-f8245aa3a40f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T213353Z:5ab4aff4-aa3b-4e3a-93a7-79f4e1ab8714" + "WESTUS2:20170724T225937Z:408d1132-5c01-4bcb-8840-f8245aa3a40f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -58,22 +59,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "490d41c9-ee65-47e8-b8c8-deaf9ae48919" + "1b2fc869-408c-43da-945a-581f866ebcae" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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" @@ -85,7 +87,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 21:33:53 GMT" + "Mon, 24 Jul 2017 22:59:37 GMT" ], "Pragma": [ "no-cache" @@ -94,16 +96,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14972" ], "x-ms-request-id": [ - "7baac7bf-ba3d-4859-95a5-d4612785af57" + "19b4ff82-1a20-413e-a788-e2806f546bfe" ], "x-ms-correlation-request-id": [ - "7baac7bf-ba3d-4859-95a5-d4612785af57" + "19b4ff82-1a20-413e-a788-e2806f546bfe" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T213353Z:7baac7bf-ba3d-4859-95a5-d4612785af57" + "WESTUS2:20170724T225937Z:19b4ff82-1a20-413e-a788-e2806f546bfe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -112,22 +114,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e598ab57-35f7-4c8c-8d49-0275bc6467d9" + "2af2bbf7-511e-422b-af66-62501303929f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/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 \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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 \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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,7 +142,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 21:33:54 GMT" + "Mon, 24 Jul 2017 22:59:38 GMT" ], "Pragma": [ "no-cache" @@ -151,16 +154,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1190" ], "x-ms-request-id": [ - "96d40078-c535-4217-b743-3a1c3d176ff7" + "168f4c4e-bed0-4901-8d69-e90c5902dd1d" ], "x-ms-correlation-request-id": [ - "96d40078-c535-4217-b743-3a1c3d176ff7" + "168f4c4e-bed0-4901-8d69-e90c5902dd1d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T213354Z:96d40078-c535-4217-b743-3a1c3d176ff7" + "WESTUS2:20170724T225938Z:168f4c4e-bed0-4901-8d69-e90c5902dd1d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -169,22 +172,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "65e4c623-9d6c-4868-9987-3422df4bd26a" + "48f73158-fba3-49f1-a15d-ad526936d406" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/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 \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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 \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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" @@ -196,7 +200,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 21:33:54 GMT" + "Mon, 24 Jul 2017 22:59:38 GMT" ], "Pragma": [ "no-cache" @@ -205,16 +209,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14971" ], "x-ms-request-id": [ - "91c8875d-85be-4d7e-a144-a7efb8c49542" + "5e5e2342-4584-4bc6-b2c2-e08ebd6f3d29" ], "x-ms-correlation-request-id": [ - "91c8875d-85be-4d7e-a144-a7efb8c49542" + "5e5e2342-4584-4bc6-b2c2-e08ebd6f3d29" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T213354Z:91c8875d-85be-4d7e-a144-a7efb8c49542" + "WESTUS2:20170724T225938Z:5e5e2342-4584-4bc6-b2c2-e08ebd6f3d29" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -223,22 +227,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg12554?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMjU1ND9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg18995?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxODk5NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "60d4f0ba-075f-42e2-afc7-f86dbb9a160d" + "8035321e-14a8-48f5-b064-ac6ea59af4cc" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg12554' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg18995' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -253,7 +258,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 21:33:54 GMT" + "Mon, 24 Jul 2017 22:59:38 GMT" ], "Pragma": [ "no-cache" @@ -262,16 +267,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14970" ], "x-ms-request-id": [ - "89d70e4f-7206-4038-b991-4b95cfeb6757" + "21b3455f-d9b9-43af-9ded-62610b233a22" ], "x-ms-correlation-request-id": [ - "89d70e4f-7206-4038-b991-4b95cfeb6757" + "21b3455f-d9b9-43af-9ded-62610b233a22" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T213354Z:89d70e4f-7206-4038-b991-4b95cfeb6757" + "WESTUS2:20170724T225938Z:21b3455f-d9b9-43af-9ded-62610b233a22" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -280,22 +285,23 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg12554?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMjU1ND9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg18995?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxODk5NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "80451311-5f93-4e72-9b6f-d1f3325a3a7b" + "7e708f18-131e-4dce-a56b-f225c9685add" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg18995\",\r\n \"name\": \"datalakerg18995\",\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 +313,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 21:33:55 GMT" + "Mon, 24 Jul 2017 22:59:40 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +322,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14969" ], "x-ms-request-id": [ - "81af64b7-7a55-447c-a237-43fe0c925cf1" + "e05a50f8-c4aa-4d5b-be9d-a0ad07fdeb64" ], "x-ms-correlation-request-id": [ - "81af64b7-7a55-447c-a237-43fe0c925cf1" + "e05a50f8-c4aa-4d5b-be9d-a0ad07fdeb64" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T213355Z:81af64b7-7a55-447c-a237-43fe0c925cf1" + "WESTUS2:20170724T225940Z:e05a50f8-c4aa-4d5b-be9d-a0ad07fdeb64" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +340,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg12554?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMjU1ND9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg18995?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxODk5NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,16 +352,17 @@ "31" ], "x-ms-client-request-id": [ - "85006c7b-dc13-495c-bc29-53c98ca096d7" + "88cf4e78-f764-4c03-bf31-37be150165e5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg18995\",\r\n \"name\": \"datalakerg18995\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -370,22 +377,22 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 21:33:55 GMT" + "Mon, 24 Jul 2017 22:59:40 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1189" ], "x-ms-request-id": [ - "3720961a-b104-4252-9e1f-506782064e4f" + "8c97b9a7-6a1f-4c77-8941-3cc2438c7921" ], "x-ms-correlation-request-id": [ - "3720961a-b104-4252-9e1f-506782064e4f" + "8c97b9a7-6a1f-4c77-8941-3cc2438c7921" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T213355Z:3720961a-b104-4252-9e1f-506782064e4f" + "WESTUS2:20170724T225940Z:8c97b9a7-6a1f-4c77-8941-3cc2438c7921" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -394,22 +401,23 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12554/providers/Microsoft.DataLakeStore/accounts/testadlfs11532?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMjU1NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE1MzI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg18995/providers/Microsoft.DataLakeStore/accounts/testadlfs12913?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTI5MTM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0e9a394b-aa40-41ea-bc93-ea2f33ce0a99" + "c20343e6-cebe-4298-afc9-b6224b96bd0c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs12913' under resource group 'datalakerg18995' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "166" @@ -424,7 +432,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 21:33:55 GMT" + "Mon, 24 Jul 2017 22:59:40 GMT" ], "Pragma": [ "no-cache" @@ -433,13 +441,13 @@ "gateway" ], "x-ms-request-id": [ - "e09b5c55-ba87-4778-be3d-ce874f8ebe93" + "ede42699-eda0-4c21-a6ac-d3dd3840cb1b" ], "x-ms-correlation-request-id": [ - "e09b5c55-ba87-4778-be3d-ce874f8ebe93" + "ede42699-eda0-4c21-a6ac-d3dd3840cb1b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T213355Z:e09b5c55-ba87-4778-be3d-ce874f8ebe93" + "WESTUS2:20170724T225940Z:ede42699-eda0-4c21-a6ac-d3dd3840cb1b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -448,16 +456,17 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12554/providers/Microsoft.DataLakeStore/accounts/testadlfs11532?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMjU1NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE1MzI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg18995/providers/Microsoft.DataLakeStore/accounts/testadlfs12913?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTI5MTM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"testadlfs12913.azuredatalakestore.net\",\r\n \"accountId\": \"04adc01d-5acd-41f3-8a46-a9cb63ca4b8e\",\r\n \"creationTime\": \"2017-07-24T22:59:43.1110135Z\",\r\n \"lastModifiedTime\": \"2017-07-24T22:59:43.1110135Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg18995/providers/Microsoft.DataLakeStore/accounts/testadlfs12913\",\r\n \"name\": \"testadlfs12913\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -472,7 +481,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 21:34:27 GMT" + "Mon, 24 Jul 2017 23:00:13 GMT" ], "Pragma": [ "no-cache" @@ -484,7 +493,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "ecfb7220-4b29-4b16-9119-45b9a24badfa" + "835bc349-17d1-45d9-b675-95868ee76d52" ], "X-Content-Type-Options": [ "nosniff" @@ -496,13 +505,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14993" ], "x-ms-correlation-request-id": [ - "44b28cc7-0ec9-4751-a7e0-c0b65e9fec73" + "f9376b34-75bc-4845-b2f4-51d51610ddf9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T213428Z:44b28cc7-0ec9-4751-a7e0-c0b65e9fec73" + "WESTUS2:20170724T230014Z:f9376b34-75bc-4845-b2f4-51d51610ddf9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -511,22 +520,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12554/providers/Microsoft.DataLakeStore/accounts/testadlfs11532?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMjU1NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE1MzI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg18995/providers/Microsoft.DataLakeStore/accounts/testadlfs12913?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTI5MTM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ef167cac-1328-442f-9400-1e20e6325040" + "492861d3-351d-481d-b0a5-6e5fe75f68c2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"testadlfs12913.azuredatalakestore.net\",\r\n \"accountId\": \"04adc01d-5acd-41f3-8a46-a9cb63ca4b8e\",\r\n \"creationTime\": \"2017-07-24T22:59:43.1110135Z\",\r\n \"lastModifiedTime\": \"2017-07-24T22:59:43.1110135Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg18995/providers/Microsoft.DataLakeStore/accounts/testadlfs12913\",\r\n \"name\": \"testadlfs12913\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -541,7 +551,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 21:34:27 GMT" + "Mon, 24 Jul 2017 23:00:14 GMT" ], "Pragma": [ "no-cache" @@ -553,7 +563,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "34770705-3667-42fe-aaec-c949faa3ffdd" + "ab20f3d7-5eed-499e-aa4c-75ca6e39ed54" ], "X-Content-Type-Options": [ "nosniff" @@ -565,13 +575,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14988" ], "x-ms-correlation-request-id": [ - "0646f512-e98d-4ea8-af4f-fd66fc5bb73c" + "3a45b7f8-74d2-4df1-a8bf-dbf1f65d1564" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T213428Z:0646f512-e98d-4ea8-af4f-fd66fc5bb73c" + "WESTUS2:20170724T230015Z:3a45b7f8-74d2-4df1-a8bf-dbf1f65d1564" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -580,8 +590,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12554/providers/Microsoft.DataLakeStore/accounts/testadlfs11532?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMjU1NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE1MzI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg18995/providers/Microsoft.DataLakeStore/accounts/testadlfs12913?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTI5MTM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -592,16 +602,17 @@ "31" ], "x-ms-client-request-id": [ - "00e4e684-ece0-468f-a619-0f777e47e2d3" + "8f26b520-9ec7-4e63-8c4f-b15a732191e0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"04adc01d-5acd-41f3-8a46-a9cb63ca4b8e\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg18995/providers/Microsoft.DataLakeStore/accounts/testadlfs12913\",\r\n \"name\": \"testadlfs12913\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "420" @@ -619,13 +630,13 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 21:33:56 GMT" + "Mon, 24 Jul 2017 22:59:42 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg12554/providers/Microsoft.DataLakeStore/accounts/testadlfs11532/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg18995/providers/Microsoft.DataLakeStore/accounts/testadlfs12913/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -634,10 +645,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "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" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/04adc01d-5acd-41f3-8a46-a9cb63ca4b8e0?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "12695c27-0d2b-4145-a5c9-104b11e7d92e" + "710538f1-5f21-4ab1-a31e-6ade16d923c2" ], "X-Content-Type-Options": [ "nosniff" @@ -649,13 +660,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1191" ], "x-ms-correlation-request-id": [ - "099c15a4-cdbb-489f-aec2-f6d7998d6eac" + "aeda721a-b617-40d5-a555-4bf6a38dd2e5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T213356Z:099c15a4-cdbb-489f-aec2-f6d7998d6eac" + "WESTUS2:20170724T225942Z:aeda721a-b617-40d5-a555-4bf6a38dd2e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -664,13 +675,14 @@ "StatusCode": 201 }, { - "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", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/04adc01d-5acd-41f3-8a46-a9cb63ca4b8e0?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzA0YWRjMDFkLTVhY2QtNDFmMy04YTQ2LWE5Y2I2M2NhNGI4ZTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -688,7 +700,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 21:34:26 GMT" + "Mon, 24 Jul 2017 23:00:13 GMT" ], "Pragma": [ "no-cache" @@ -700,7 +712,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "541745cb-6c5d-4cf2-ab54-059c9c0c62f6" + "10b87eb8-9d55-4d47-9f13-f506aa2f3143" ], "X-Content-Type-Options": [ "nosniff" @@ -712,13 +724,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14988" ], "x-ms-correlation-request-id": [ - "0f0a7e16-6a3c-4ed0-a121-20336f7df300" + "3e7358aa-873c-4d2a-89c5-97912a4b0e53" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T213427Z:0f0a7e16-6a3c-4ed0-a121-20336f7df300" + "WESTUS2:20170724T230013Z:3e7358aa-873c-4d2a-89c5-97912a4b0e53" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -727,19 +739,20 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder017119?op=MKDIRS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOT9vcD1NS0RJUlMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder011879?op=MKDIRS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMTg3OT9vcD1NS0RJUlMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bf3e2c58-14b3-4846-8299-78b74ef69f8c" + "712224c3-a06d-4204-a16d-cecdc8066b35" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "{\r\n \"boolean\": true\r\n}", @@ -757,16 +770,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 21:34:30 GMT" + "Mon, 24 Jul 2017 23:00:18 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "9318b3c3-a185-4e71-adc8-72e676569e2c" + "147628c7-bbca-445b-847c-15609b442741" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -781,8 +794,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2FSDKTestFile01.txt5159?op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRlNES1Rlc3RGaWxlMDEudHh0NTE1OT9vcD1DUkVBVEUmd3JpdGU9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder011879%2FSDKTestFile01.txt5093?write=true&op=CREATE&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMTg3OSUyRlNES1Rlc3RGaWxlMDEudHh0NTA5Mz93cml0ZT10cnVlJm9wPUNSRUFURSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -793,13 +806,14 @@ "42" ], "x-ms-client-request-id": [ - "6c886b7e-4194-460e-af35-8700fa07542a" + "fe95834f-f262-4c1c-b828-06cede62bf96" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "", @@ -814,22 +828,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 21:34:31 GMT" + "Mon, 24 Jul 2017 23:00:19 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs11532.azuredatalakestore.net/webhdfs/v1/SDKTestFolder017119/SDKTestFile01.txt5159?op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs12913.azuredatalakestore.net/webhdfs/v1/SDKTestFolder011879/SDKTestFile01.txt5093?write=true&op=CREATE&api-version=2016-11-01" ], "x-ms-request-id": [ - "7143d0b1-0d69-46c0-b106-4a86af73d9d9" + "8d170fef-1bd3-483f-bc76-b6498c5cd44a" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -844,8 +858,8 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2FSDKTestFile01.txt6454?op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRlNES1Rlc3RGaWxlMDEudHh0NjQ1ND9vcD1DUkVBVEUmd3JpdGU9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder011879%2FSDKTestFile01.txt5005?write=true&op=CREATE&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMTg3OSUyRlNES1Rlc3RGaWxlMDEudHh0NTAwNT93cml0ZT10cnVlJm9wPUNSRUFURSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -856,13 +870,14 @@ "42" ], "x-ms-client-request-id": [ - "dc6e563d-da9c-48d4-98f7-cfe66d0db559" + "1fb536b2-dc82-43e5-99df-4adb50e2adca" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "", @@ -877,22 +892,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 21:34:31 GMT" + "Mon, 24 Jul 2017 23:00:20 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs11532.azuredatalakestore.net/webhdfs/v1/SDKTestFolder017119/SDKTestFile01.txt6454?op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs12913.azuredatalakestore.net/webhdfs/v1/SDKTestFolder011879/SDKTestFile01.txt5005?write=true&op=CREATE&api-version=2016-11-01" ], "x-ms-request-id": [ - "ba8e0b97-1f51-4ece-9a1e-361343b6e274" + "ee6a7c29-c9f0-4d10-8cd5-976db553b1d8" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -907,22 +922,23 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder017119?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOT9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder011879?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMTg3OT9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "af27f606-7b2b-44cd-a55d-16ac3b153019" + "a226969d-cf9f-4712-80b1-1737d139879a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"DIRECTORY\",\r\n \"blockSize\": 0,\r\n \"accessTime\": 1500937218759,\r\n \"modificationTime\": 1500937219952,\r\n \"replication\": 0,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "280" @@ -937,16 +953,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 21:34:31 GMT" + "Mon, 24 Jul 2017 23:00:20 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "3219e1fa-5c5d-49ab-a1ae-4554dcb226bf" + "34fb5a3d-1269-4c3e-baaf-ade697fa7bee" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -961,22 +977,23 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder017119?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOT9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder011879?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMTg3OT9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d309092e-25b1-4d37-ae2f-205b322197b2" + "5bc9802c-060f-44b6-9d7b-81ee53f1191c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"DIRECTORY\",\r\n \"blockSize\": 0,\r\n \"accessTime\": 1500937218759,\r\n \"modificationTime\": 1500937219952,\r\n \"replication\": 0,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "280" @@ -991,16 +1008,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 21:34:31 GMT" + "Mon, 24 Jul 2017 23:00:20 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "c977868c-0bfd-4cb1-bfd2-8ce5677cada8" + "f3cab511-2d7e-4834-9119-16156d94c277" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -1015,22 +1032,23 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder017119?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOT9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder011879?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMTg3OT9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "549aaaf0-8109-42d4-ba6f-4353419799ed" + "ea78f8f4-956a-401a-9989-ee80dcb5f00d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"DIRECTORY\",\r\n \"blockSize\": 0,\r\n \"accessTime\": 1500937218759,\r\n \"modificationTime\": 1500937219952,\r\n \"replication\": 0,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "280" @@ -1045,16 +1063,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 21:34:31 GMT" + "Mon, 24 Jul 2017 23:00:20 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "c6c443e2-8f04-494e-9eef-07418c8d0149" + "6e6dbc66-8367-4088-b628-7fed69b6ba02" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -1069,22 +1087,23 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder017119?op=LISTSTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOT9vcD1MSVNUU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder011879?op=LISTSTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMTg3OT9vcD1MSVNUU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "44631b71-403a-434f-b896-e2fb2c5c9b88" + "b687152c-b566-43ce-9f02-fda6e9bda785" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"FileStatuses\": {\r\n \"FileStatus\": [\r\n {\r\n \"length\": 42,\r\n \"pathSuffix\": \"SDKTestFile01.txt5005\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1500937219947,\r\n \"modificationTime\": 1500937219998,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n },\r\n {\r\n \"length\": 42,\r\n \"pathSuffix\": \"SDKTestFile01.txt5093\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1500937219543,\r\n \"modificationTime\": 1500937219593,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "657" @@ -1099,16 +1118,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 21:34:31 GMT" + "Mon, 24 Jul 2017 23:00:20 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "8a1e5712-13cc-41a4-85e0-dad978cbe908" + "a1080f60-a926-4e52-b3f5-d0579f429701" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -1123,22 +1142,23 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder017119?op=LISTSTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOT9vcD1MSVNUU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder011879?op=LISTSTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMTg3OT9vcD1MSVNUU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "054544b2-e64d-4337-8216-37945aa66294" + "38b3186e-7cd7-44e3-8269-479cbb896273" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"FileStatuses\": {\r\n \"FileStatus\": [\r\n {\r\n \"length\": 42,\r\n \"pathSuffix\": \"SDKTestFile01.txt5005\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1500937219947,\r\n \"modificationTime\": 1500937219998,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n },\r\n {\r\n \"length\": 42,\r\n \"pathSuffix\": \"SDKTestFile01.txt5093\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1500937219543,\r\n \"modificationTime\": 1500937219593,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "657" @@ -1153,16 +1173,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 21:34:31 GMT" + "Mon, 24 Jul 2017 23:00:20 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "9763792f-16c2-45f5-b988-5fb9b8532335" + "52edc1ca-ce44-472e-8a89-2a49cd9a459c" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -1177,22 +1197,23 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2FSDKTestFile01.txt6454?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRlNES1Rlc3RGaWxlMDEudHh0NjQ1ND9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder011879%2FSDKTestFile01.txt5005?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMTg3OSUyRlNES1Rlc3RGaWxlMDEudHh0NTAwNT9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "04f5f7df-4ba4-4e87-9136-29053201aaa8" + "0df88763-97f7-42ef-9b2a-aaa84fc189e4" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1500937219947,\r\n \"modificationTime\": 1500937219998,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "305" @@ -1207,16 +1228,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 21:34:32 GMT" + "Mon, 24 Jul 2017 23:00:21 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "30e24bc4-fb6a-4367-9bc7-9a7ec69e48c9" + "7520d42e-467e-427d-9287-f9bb9e007a5e" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -1231,19 +1252,20 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2FSDKTestFile01.txt6454?length=42&offset=0&op=OPEN&read=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRlNES1Rlc3RGaWxlMDEudHh0NjQ1ND9sZW5ndGg9NDImb2Zmc2V0PTAmb3A9T1BFTiZyZWFkPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder011879%2FSDKTestFile01.txt5005?length=42&offset=0&read=true&op=OPEN&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMTg3OSUyRlNES1Rlc3RGaWxlMDEudHh0NTAwNT9sZW5ndGg9NDImb2Zmc2V0PTAmcmVhZD10cnVlJm9wPU9QRU4mYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "73a7908f-e09e-4c44-91e1-aa883014d8e1" + "f1171342-ebee-4ecc-bac3-9fa692689df0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "These are some random test contents 1234!@", @@ -1258,7 +1280,7 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 21:34:32 GMT" + "Mon, 24 Jul 2017 23:00:21 GMT" ], "Pragma": [ "no-cache" @@ -1267,10 +1289,10 @@ "chunked" ], "x-ms-request-id": [ - "292b6983-c5d4-4d11-b51f-73cfaa079997" + "d99a06aa-d19e-42f4-867c-4c2fa9d9be33" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -1285,22 +1307,23 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2FSDKTestFile01.txt5159?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRlNES1Rlc3RGaWxlMDEudHh0NTE1OT9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder011879%2FSDKTestFile01.txt5093?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMTg3OSUyRlNES1Rlc3RGaWxlMDEudHh0NTA5Mz9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "18ad8d01-f249-4b27-a32e-44cb21466024" + "20c593c2-82ca-414f-9266-6c0365c734d4" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1500937219543,\r\n \"modificationTime\": 1500937219593,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "305" @@ -1315,16 +1338,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 21:34:32 GMT" + "Mon, 24 Jul 2017 23:00:21 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "28b197ce-7448-4282-b246-b4968ec4a19b" + "5c0deb30-ebfd-4dab-af5b-6d0dddb84198" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -1339,22 +1362,23 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2FSDKTestFile01.txt5159?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRlNES1Rlc3RGaWxlMDEudHh0NTE1OT9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder011879%2FSDKTestFile01.txt5093?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMTg3OSUyRlNES1Rlc3RGaWxlMDEudHh0NTA5Mz9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "169e7033-3f20-45f4-91ac-d7f70db1e99a" + "79e9bd59-1fb6-44c8-a36e-1d87f7553816" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1500937219543,\r\n \"modificationTime\": 1500937219593,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "305" @@ -1369,16 +1393,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 21:34:32 GMT" + "Mon, 24 Jul 2017 23:00:21 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "c4042c1d-cc62-4ab7-8b79-f952a9d0e406" + "7a533110-1b5a-4f45-9447-f6519b6a42fb" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -1393,22 +1417,23 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2FSDKTestFile01.txt5159?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRlNES1Rlc3RGaWxlMDEudHh0NTE1OT9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder011879%2FSDKTestFile01.txt5093?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMTg3OSUyRlNES1Rlc3RGaWxlMDEudHh0NTA5Mz9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3661bb3a-acb3-4186-81f6-4d0cff7d1441" + "35923213-8027-49ce-bb65-9885bfa044e8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1500937219543,\r\n \"modificationTime\": 1500937219593,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "305" @@ -1423,16 +1448,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 21:34:32 GMT" + "Mon, 24 Jul 2017 23:00:21 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "b633aa1c-c375-4ad9-8333-61e7b1639603" + "6b1ef506-a00d-43d7-b5e7-7df2c08085c0" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -1447,22 +1472,23 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2FSDKTestFile01.txt5159?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRlNES1Rlc3RGaWxlMDEudHh0NTE1OT9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder011879%2FSDKTestFile01.txt5093?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMTg3OSUyRlNES1Rlc3RGaWxlMDEudHh0NTA5Mz9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0548b3d3-4fc5-4b97-b44c-6d3c1f8d5597" + "210e06fe-93f2-4fb9-9dad-efd373f73964" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1500937219543,\r\n \"modificationTime\": 1500937219593,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "305" @@ -1477,16 +1503,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 21:34:33 GMT" + "Mon, 24 Jul 2017 23:00:21 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "f0144177-5e3e-4bba-b543-af0d0184725d" + "7a2393dd-9f15-49c1-959b-6090595d52fe" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -1501,22 +1527,23 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2FSDKTestFile01.txt5159?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRlNES1Rlc3RGaWxlMDEudHh0NTE1OT9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder011879%2FSDKTestFile01.txt5093?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMTg3OSUyRlNES1Rlc3RGaWxlMDEudHh0NTA5Mz9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4dba1519-1870-4bca-b7df-6c32fbb32832" + "83107bb1-05b4-4e13-8531-86adc512a770" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1500937219543,\r\n \"modificationTime\": 1500937219593,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "305" @@ -1531,16 +1558,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 21:34:32 GMT" + "Mon, 24 Jul 2017 23:00:21 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "c64555df-1653-4813-8b73-692743295062" + "03a5311f-cb1c-436f-a661-91845bb18d14" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -1555,19 +1582,20 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2FSDKTestFile01.txt5159?length=42&offset=0&op=OPEN&read=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRlNES1Rlc3RGaWxlMDEudHh0NTE1OT9sZW5ndGg9NDImb2Zmc2V0PTAmb3A9T1BFTiZyZWFkPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder011879%2FSDKTestFile01.txt5093?length=42&offset=0&read=true&op=OPEN&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMTg3OSUyRlNES1Rlc3RGaWxlMDEudHh0NTA5Mz9sZW5ndGg9NDImb2Zmc2V0PTAmcmVhZD10cnVlJm9wPU9QRU4mYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d718a1c4-324d-46ba-b38f-347f23162194" + "dca11c8f-bdf7-4b58-bc01-25e51fe3cfa9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "These are some random test contents 1234!@", @@ -1582,7 +1610,7 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 21:34:32 GMT" + "Mon, 24 Jul 2017 23:00:21 GMT" ], "Pragma": [ "no-cache" @@ -1591,10 +1619,10 @@ "chunked" ], "x-ms-request-id": [ - "be34b7e2-51f5-4b7e-a640-2613ac9f873a" + "54000e7c-8829-4101-8854-3b7bae322b13" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -1609,19 +1637,20 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2FSDKTestFile01.txt5159?length=42&offset=0&op=OPEN&read=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRlNES1Rlc3RGaWxlMDEudHh0NTE1OT9sZW5ndGg9NDImb2Zmc2V0PTAmb3A9T1BFTiZyZWFkPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder011879%2FSDKTestFile01.txt5093?length=42&offset=0&read=true&op=OPEN&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMTg3OSUyRlNES1Rlc3RGaWxlMDEudHh0NTA5Mz9sZW5ndGg9NDImb2Zmc2V0PTAmcmVhZD10cnVlJm9wPU9QRU4mYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5178446a-e467-4922-b98b-1e0ae6cb4cdb" + "a9a26bcd-bf9c-41b7-97ae-3153730b9e18" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "These are some random test contents 1234!@", @@ -1636,7 +1665,7 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 21:34:33 GMT" + "Mon, 24 Jul 2017 23:00:22 GMT" ], "Pragma": [ "no-cache" @@ -1645,10 +1674,10 @@ "chunked" ], "x-ms-request-id": [ - "08dc8af2-0ba7-48b9-a445-a872788bf304" + "daa59fe5-c57f-42e2-9a4a-a011f1481665" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -1663,22 +1692,23 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2Fupload%2FSDKTestFile01.txt5159?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRnVwbG9hZCUyRlNES1Rlc3RGaWxlMDEudHh0NTE1OT9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder011879%2Fupload%2FSDKTestFile01.txt5005?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMTg3OSUyRnVwbG9hZCUyRlNES1Rlc3RGaWxlMDEudHh0NTAwNT9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "207a50b7-3c6e-42fc-8d23-2cee947ef156" + "d90a8b10-9575-440d-88df-b07809ec15be" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder011879/upload/SDKTestFile01.txt5005 [82ec603f-2441-486a-be3f-51ede35bb944][2017-07-24T16:00:22.4140023-07:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "269" @@ -1693,16 +1723,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 21:34:33 GMT" + "Mon, 24 Jul 2017 23:00:22 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "f76383fa-6761-49d0-b885-63ce86294ccd" + "82ec603f-2441-486a-be3f-51ede35bb944" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x8309000A" @@ -1717,22 +1747,23 @@ "StatusCode": 404 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2Fupload%2FSDKTestFile01.txt5159?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRnVwbG9hZCUyRlNES1Rlc3RGaWxlMDEudHh0NTE1OT9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder011879%2Fupload%2FSDKTestFile01.txt5005?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMTg3OSUyRnVwbG9hZCUyRlNES1Rlc3RGaWxlMDEudHh0NTAwNT9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c70ced86-4ace-4988-81ff-aede32bc3c9a" + "2e7c475c-abcc-464c-8c3f-2ce618eb4ac4" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1500937223059,\r\n \"modificationTime\": 1500937223105,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "305" @@ -1747,16 +1778,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 21:34:34 GMT" + "Mon, 24 Jul 2017 23:00:23 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "67799e8e-fc26-4127-a227-1d55f7448022" + "5aac82ea-7c99-4db0-90ac-3a5aa50a3881" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -1771,22 +1802,23 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2Fupload%2FSDKTestFile01.txt6454?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRnVwbG9hZCUyRlNES1Rlc3RGaWxlMDEudHh0NjQ1ND9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder011879%2Fupload%2FSDKTestFile01.txt5093?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMTg3OSUyRnVwbG9hZCUyRlNES1Rlc3RGaWxlMDEudHh0NTA5Mz9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b27b70de-e4d4-4694-a177-284829da6b41" + "8740f9f9-f18e-45ed-bb67-6974608b1a94" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder011879/upload/SDKTestFile01.txt5093 [e1db5596-c075-428a-bb42-fa3311ad3a09][2017-07-24T16:00:22.4072445-07:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "269" @@ -1801,16 +1833,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 21:34:33 GMT" + "Mon, 24 Jul 2017 23:00:22 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "cef3a82f-0ecc-40fc-9ab5-eb184d2f09e6" + "e1db5596-c075-428a-bb42-fa3311ad3a09" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x8309000A" @@ -1825,22 +1857,23 @@ "StatusCode": 404 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2Fupload%2FSDKTestFile01.txt6454?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRnVwbG9hZCUyRlNES1Rlc3RGaWxlMDEudHh0NjQ1ND9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder011879%2Fupload%2FSDKTestFile01.txt5093?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMTg3OSUyRnVwbG9hZCUyRlNES1Rlc3RGaWxlMDEudHh0NTA5Mz9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ab013b7-9d75-4599-b67e-91c2017e782d" + "aab76c98-7750-4258-b31e-38cec6f20178" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1500937223056,\r\n \"modificationTime\": 1500937223092,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "305" @@ -1855,16 +1888,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 21:34:34 GMT" + "Mon, 24 Jul 2017 23:00:23 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "a527f4fb-e8a5-4b25-81ff-26c7a162f6a8" + "fd3ba3e5-b28c-4144-9ce2-8ff08799ceb3" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -1879,22 +1912,23 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2Fupload%2FspecificFileDownload.out?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRnVwbG9hZCUyRnNwZWNpZmljRmlsZURvd25sb2FkLm91dD9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder011879%2Fupload%2FspecificFileDownload.out?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMTg3OSUyRnVwbG9hZCUyRnNwZWNpZmljRmlsZURvd25sb2FkLm91dD9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0d44eafa-20fd-4273-88c0-314cca4219a2" + "daf57e66-f845-4b6a-acd3-5fe8d154a34b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder011879/upload/specificFileDownload.out [0cffc37f-f9b6-43fa-a2cb-2796765e2b7e][2017-07-24T16:00:22.7368418-07:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "272" @@ -1909,16 +1943,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 21:34:33 GMT" + "Mon, 24 Jul 2017 23:00:22 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "9aff10d6-392e-437e-844a-bb196d192a5d" + "0cffc37f-f9b6-43fa-a2cb-2796765e2b7e" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x8309000A" @@ -1933,22 +1967,23 @@ "StatusCode": 404 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2Fupload%2FspecificFileDownload.out?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRnVwbG9hZCUyRnNwZWNpZmljRmlsZURvd25sb2FkLm91dD9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder011879%2Fupload%2FspecificFileDownload.out?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMTg3OSUyRnVwbG9hZCUyRnNwZWNpZmljRmlsZURvd25sb2FkLm91dD9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "54a33515-e234-447f-95fb-2a1cecaae848" + "d2fc2fd2-ff04-4075-8a8f-e1650999dcac" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1500937223081,\r\n \"modificationTime\": 1500937223352,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "305" @@ -1963,16 +1998,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 21:34:34 GMT" + "Mon, 24 Jul 2017 23:00:23 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "ea8f5eb9-3323-4577-a8ef-a14e41719abc" + "ffeb42c9-8ab9-4a8c-b0f1-d097ed010a83" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -1987,8 +2022,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2Fupload%2FSDKTestFile01.txt5159?overwrite=true&op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRnVwbG9hZCUyRlNES1Rlc3RGaWxlMDEudHh0NTE1OT9vdmVyd3JpdGU9dHJ1ZSZvcD1DUkVBVEUmd3JpdGU9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder011879%2Fupload%2FSDKTestFile01.txt5005?overwrite=true&write=true&op=CREATE&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMTg3OSUyRnVwbG9hZCUyRlNES1Rlc3RGaWxlMDEudHh0NTAwNT9vdmVyd3JpdGU9dHJ1ZSZ3cml0ZT10cnVlJm9wPUNSRUFURSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { @@ -1999,13 +2034,14 @@ "0" ], "x-ms-client-request-id": [ - "f86aac02-959f-4316-9063-d563acaab837" + "96d048fa-f3f3-4bed-bad1-f4fe51147eed" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "", @@ -2020,22 +2056,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 21:34:33 GMT" + "Mon, 24 Jul 2017 23:00:22 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs11532.azuredatalakestore.net/webhdfs/v1/SDKTestFolder017119/upload/SDKTestFile01.txt5159?overwrite=true&op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs12913.azuredatalakestore.net/webhdfs/v1/SDKTestFolder011879/upload/SDKTestFile01.txt5005?overwrite=true&write=true&op=CREATE&api-version=2016-11-01" ], "x-ms-request-id": [ - "120e3514-add5-4bcd-9c5d-b570cc61ffed" + "be45695b-a412-4556-b12d-c5795f625a72" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -2050,8 +2086,8 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2Fupload%2FSDKTestFile01.txt5159?overwrite=true&op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRnVwbG9hZCUyRlNES1Rlc3RGaWxlMDEudHh0NTE1OT9vdmVyd3JpdGU9dHJ1ZSZvcD1DUkVBVEUmd3JpdGU9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder011879%2Fupload%2FSDKTestFile01.txt5005?overwrite=true&write=true&op=CREATE&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMTg3OSUyRnVwbG9hZCUyRlNES1Rlc3RGaWxlMDEudHh0NTAwNT9vdmVyd3JpdGU9dHJ1ZSZ3cml0ZT10cnVlJm9wPUNSRUFURSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -2062,13 +2098,14 @@ "42" ], "x-ms-client-request-id": [ - "8c04e18d-161d-45f6-903f-e5ab5526ad3e" + "2031f2d1-f717-4d34-890d-18fdabfe20f2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "", @@ -2083,22 +2120,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 21:34:34 GMT" + "Mon, 24 Jul 2017 23:00:23 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs11532.azuredatalakestore.net/webhdfs/v1/SDKTestFolder017119/upload/SDKTestFile01.txt5159?overwrite=true&op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs12913.azuredatalakestore.net/webhdfs/v1/SDKTestFolder011879/upload/SDKTestFile01.txt5005?overwrite=true&write=true&op=CREATE&api-version=2016-11-01" ], "x-ms-request-id": [ - "15d7a218-563b-4293-bcb0-f203f69d7883" + "02ac6d7a-9218-4509-ab38-fe4d488540e1" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -2113,8 +2150,8 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2Fupload%2FspecificFileDownload.out?overwrite=true&op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRnVwbG9hZCUyRnNwZWNpZmljRmlsZURvd25sb2FkLm91dD9vdmVyd3JpdGU9dHJ1ZSZvcD1DUkVBVEUmd3JpdGU9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder011879%2Fupload%2FspecificFileDownload.out?overwrite=true&write=true&op=CREATE&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMTg3OSUyRnVwbG9hZCUyRnNwZWNpZmljRmlsZURvd25sb2FkLm91dD9vdmVyd3JpdGU9dHJ1ZSZ3cml0ZT10cnVlJm9wPUNSRUFURSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { @@ -2125,13 +2162,14 @@ "0" ], "x-ms-client-request-id": [ - "dbe5c95c-c31a-4a9d-8f23-1137d8535cae" + "5b592b85-fbfb-4505-be89-947d4a7b51d5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "", @@ -2146,22 +2184,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 21:34:33 GMT" + "Mon, 24 Jul 2017 23:00:22 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs11532.azuredatalakestore.net/webhdfs/v1/SDKTestFolder017119/upload/specificFileDownload.out?overwrite=true&op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs12913.azuredatalakestore.net/webhdfs/v1/SDKTestFolder011879/upload/specificFileDownload.out?overwrite=true&write=true&op=CREATE&api-version=2016-11-01" ], "x-ms-request-id": [ - "fa9eee88-59d2-401c-9ec5-26853d312dc7" + "ab781592-a87a-486c-93c2-7909c1ad439b" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -2176,8 +2214,8 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2Fupload%2FspecificFileDownload.out?overwrite=true&op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRnVwbG9hZCUyRnNwZWNpZmljRmlsZURvd25sb2FkLm91dD9vdmVyd3JpdGU9dHJ1ZSZvcD1DUkVBVEUmd3JpdGU9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder011879%2Fupload%2FspecificFileDownload.out?overwrite=true&write=true&op=CREATE&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMTg3OSUyRnVwbG9hZCUyRnNwZWNpZmljRmlsZURvd25sb2FkLm91dD9vdmVyd3JpdGU9dHJ1ZSZ3cml0ZT10cnVlJm9wPUNSRUFURSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -2188,13 +2226,14 @@ "42" ], "x-ms-client-request-id": [ - "8d8a5fed-e57f-434e-b556-66a1e1fff587" + "5d2d15a0-c18f-4af7-8b4a-332d2e3f72cd" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "", @@ -2209,22 +2248,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 21:34:34 GMT" + "Mon, 24 Jul 2017 23:00:22 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs11532.azuredatalakestore.net/webhdfs/v1/SDKTestFolder017119/upload/specificFileDownload.out?overwrite=true&op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs12913.azuredatalakestore.net/webhdfs/v1/SDKTestFolder011879/upload/specificFileDownload.out?overwrite=true&write=true&op=CREATE&api-version=2016-11-01" ], "x-ms-request-id": [ - "8146a790-cfeb-4e85-95cb-d72247b66db9" + "0dc45d2b-59d1-4b56-b6d2-bec16489e870" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -2239,8 +2278,8 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2Fupload%2FSDKTestFile01.txt6454?overwrite=true&op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRnVwbG9hZCUyRlNES1Rlc3RGaWxlMDEudHh0NjQ1ND9vdmVyd3JpdGU9dHJ1ZSZvcD1DUkVBVEUmd3JpdGU9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder011879%2Fupload%2FSDKTestFile01.txt5093?overwrite=true&write=true&op=CREATE&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMTg3OSUyRnVwbG9hZCUyRlNES1Rlc3RGaWxlMDEudHh0NTA5Mz9vdmVyd3JpdGU9dHJ1ZSZ3cml0ZT10cnVlJm9wPUNSRUFURSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { @@ -2251,13 +2290,14 @@ "0" ], "x-ms-client-request-id": [ - "968a5640-6909-45fb-88eb-1d7efaad6d88" + "ed4de77b-95b9-4088-90fa-1e20b240de2f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "", @@ -2272,22 +2312,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 21:34:34 GMT" + "Mon, 24 Jul 2017 23:00:22 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs11532.azuredatalakestore.net/webhdfs/v1/SDKTestFolder017119/upload/SDKTestFile01.txt6454?overwrite=true&op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs12913.azuredatalakestore.net/webhdfs/v1/SDKTestFolder011879/upload/SDKTestFile01.txt5093?overwrite=true&write=true&op=CREATE&api-version=2016-11-01" ], "x-ms-request-id": [ - "644f80c2-60cf-4dd4-b2cb-71ef5fbbc643" + "4b32097f-e6f3-49b4-b568-0afeecca74c2" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -2302,8 +2342,8 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2Fupload%2FSDKTestFile01.txt6454?overwrite=true&op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRnVwbG9hZCUyRlNES1Rlc3RGaWxlMDEudHh0NjQ1ND9vdmVyd3JpdGU9dHJ1ZSZvcD1DUkVBVEUmd3JpdGU9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder011879%2Fupload%2FSDKTestFile01.txt5093?overwrite=true&write=true&op=CREATE&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMTg3OSUyRnVwbG9hZCUyRlNES1Rlc3RGaWxlMDEudHh0NTA5Mz9vdmVyd3JpdGU9dHJ1ZSZ3cml0ZT10cnVlJm9wPUNSRUFURSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -2314,13 +2354,14 @@ "42" ], "x-ms-client-request-id": [ - "c43cfb3a-c143-47b4-a26b-5f12b5ff2ffa" + "88189d88-2c7d-4629-9c85-227ad3fd12b6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "", @@ -2335,22 +2376,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 21:34:34 GMT" + "Mon, 24 Jul 2017 23:00:23 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs11532.azuredatalakestore.net/webhdfs/v1/SDKTestFolder017119/upload/SDKTestFile01.txt6454?overwrite=true&op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs12913.azuredatalakestore.net/webhdfs/v1/SDKTestFolder011879/upload/SDKTestFile01.txt5093?overwrite=true&write=true&op=CREATE&api-version=2016-11-01" ], "x-ms-request-id": [ - "bb020960-08c1-4d06-bb63-232b350bc35e" + "c28b6842-ffa8-4c58-b14e-66283e763cde" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -2365,22 +2406,23 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2Fupload?op=LISTSTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRnVwbG9hZD9vcD1MSVNUU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder011879%2Fupload?op=LISTSTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMTg3OSUyRnVwbG9hZD9vcD1MSVNUU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "28bcc84a-07f5-41e9-a7b0-5072d9b50893" + "c1cdbe84-9e7a-4714-af43-44c1a47d2d14" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"FileStatuses\": {\r\n \"FileStatus\": [\r\n {\r\n \"length\": 42,\r\n \"pathSuffix\": \"SDKTestFile01.txt5005\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1500937223059,\r\n \"modificationTime\": 1500937223105,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n },\r\n {\r\n \"length\": 42,\r\n \"pathSuffix\": \"SDKTestFile01.txt5093\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1500937223056,\r\n \"modificationTime\": 1500937223092,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\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\": 1500937223081,\r\n \"modificationTime\": 1500937223352,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "972" @@ -2395,16 +2437,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 21:34:34 GMT" + "Mon, 24 Jul 2017 23:00:23 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "a618169b-dda5-4c12-99f1-77f3fff03893" + "af7eeef6-99ee-4a93-bf0a-9cbfefa80c3f" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -2419,22 +2461,23 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2Fupload%2FspecificFileDownload.out.new?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRnVwbG9hZCUyRnNwZWNpZmljRmlsZURvd25sb2FkLm91dC5uZXc/b3A9R0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder011879%2Fupload%2FspecificFileDownload.out.new?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMTg3OSUyRnVwbG9hZCUyRnNwZWNpZmljRmlsZURvd25sb2FkLm91dC5uZXc/b3A9R0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "89cbd046-b10b-4b0f-8435-e8c7537a7aa0" + "7c8f8c18-0567-4203-89a1-aca723e9c51f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder011879/upload/specificFileDownload.out.new [f00d8af9-88dd-4c7c-b624-04473e64ff2c][2017-07-24T16:00:24.0390503-07:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "276" @@ -2449,16 +2492,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 21:34:34 GMT" + "Mon, 24 Jul 2017 23:00:23 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "6cc90c34-96d3-4be0-a0a1-2ec3eaa9a1cf" + "f00d8af9-88dd-4c7c-b624-04473e64ff2c" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x8309000A" @@ -2473,22 +2516,23 @@ "StatusCode": 404 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2Fupload%2FspecificFileDownload.out.new?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRnVwbG9hZCUyRnNwZWNpZmljRmlsZURvd25sb2FkLm91dC5uZXc/b3A9R0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder011879%2Fupload%2FspecificFileDownload.out.new?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMTg3OSUyRnVwbG9hZCUyRnNwZWNpZmljRmlsZURvd25sb2FkLm91dC5uZXc/b3A9R0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7f25c316-0ef9-449b-aece-166d4d228b6a" + "8a3cb6cf-499f-4a5c-98ed-21c3c6edb175" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1500937224533,\r\n \"modificationTime\": 1500937224576,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "305" @@ -2503,16 +2547,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 21:34:35 GMT" + "Mon, 24 Jul 2017 23:00:24 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "4409b85b-4917-45c8-aa96-3a5f5d76d09e" + "9ca196e1-391c-4969-9c39-ab2e76735f51" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -2527,22 +2571,23 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2Fupload%2FspecificFileDownload.out.new?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRnVwbG9hZCUyRnNwZWNpZmljRmlsZURvd25sb2FkLm91dC5uZXc/b3A9R0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder011879%2Fupload%2FspecificFileDownload.out.new?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMTg3OSUyRnVwbG9hZCUyRnNwZWNpZmljRmlsZURvd25sb2FkLm91dC5uZXc/b3A9R0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5e675a1b-f212-498f-809a-c366bfe49367" + "1dc4a496-768c-4935-ad6f-950a89f056d0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1500937224533,\r\n \"modificationTime\": 1500937224576,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "305" @@ -2557,16 +2602,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 21:34:35 GMT" + "Mon, 24 Jul 2017 23:00:24 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "5bc0f0f6-4e8f-4d56-b63d-2b78586b954e" + "7e8d3d9d-3ed1-4c68-8554-05cba2da7ead" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -2581,8 +2626,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2Fupload%2FspecificFileDownload.out.new?overwrite=true&op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRnVwbG9hZCUyRnNwZWNpZmljRmlsZURvd25sb2FkLm91dC5uZXc/b3ZlcndyaXRlPXRydWUmb3A9Q1JFQVRFJndyaXRlPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder011879%2Fupload%2FspecificFileDownload.out.new?overwrite=true&write=true&op=CREATE&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMTg3OSUyRnVwbG9hZCUyRnNwZWNpZmljRmlsZURvd25sb2FkLm91dC5uZXc/b3ZlcndyaXRlPXRydWUmd3JpdGU9dHJ1ZSZvcD1DUkVBVEUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { @@ -2593,13 +2638,14 @@ "0" ], "x-ms-client-request-id": [ - "191d56ad-07e3-467e-bbc7-22ab90153387" + "625566f8-438b-481c-aa42-47bdc45b9676" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "", @@ -2614,22 +2660,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 21:34:34 GMT" + "Mon, 24 Jul 2017 23:00:23 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs11532.azuredatalakestore.net/webhdfs/v1/SDKTestFolder017119/upload/specificFileDownload.out.new?overwrite=true&op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs12913.azuredatalakestore.net/webhdfs/v1/SDKTestFolder011879/upload/specificFileDownload.out.new?overwrite=true&write=true&op=CREATE&api-version=2016-11-01" ], "x-ms-request-id": [ - "cdb52b67-b9d5-4768-9c5b-e1ac82f66d9c" + "a333d622-d1b3-404d-9817-56afc4d1b66d" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -2644,8 +2690,8 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2Fupload%2FspecificFileDownload.out.new?overwrite=true&op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRnVwbG9hZCUyRnNwZWNpZmljRmlsZURvd25sb2FkLm91dC5uZXc/b3ZlcndyaXRlPXRydWUmb3A9Q1JFQVRFJndyaXRlPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder011879%2Fupload%2FspecificFileDownload.out.new?overwrite=true&write=true&op=CREATE&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMTg3OSUyRnVwbG9hZCUyRnNwZWNpZmljRmlsZURvd25sb2FkLm91dC5uZXc/b3ZlcndyaXRlPXRydWUmd3JpdGU9dHJ1ZSZvcD1DUkVBVEUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -2656,13 +2702,14 @@ "42" ], "x-ms-client-request-id": [ - "26b0ed19-4e68-4c4f-adbf-88aee2bd2e1b" + "64a82ecf-db82-4520-835e-6f9c2cbbd88a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "", @@ -2677,22 +2724,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 21:34:35 GMT" + "Mon, 24 Jul 2017 23:00:24 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs11532.azuredatalakestore.net/webhdfs/v1/SDKTestFolder017119/upload/specificFileDownload.out.new?overwrite=true&op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs12913.azuredatalakestore.net/webhdfs/v1/SDKTestFolder011879/upload/specificFileDownload.out.new?overwrite=true&write=true&op=CREATE&api-version=2016-11-01" ], "x-ms-request-id": [ - "e9b481ac-ce1d-4b5d-93f7-cf19416aa8a0" + "88eaa8fe-9e81-4a97-8f88-62dbff0e1c9e" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -2707,19 +2754,20 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2Fupload%2FspecificFileDownload.out.new?op=OPEN&read=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRnVwbG9hZCUyRnNwZWNpZmljRmlsZURvd25sb2FkLm91dC5uZXc/b3A9T1BFTiZyZWFkPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder011879%2Fupload%2FspecificFileDownload.out.new?read=true&op=OPEN&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMTg3OSUyRnVwbG9hZCUyRnNwZWNpZmljRmlsZURvd25sb2FkLm91dC5uZXc/cmVhZD10cnVlJm9wPU9QRU4mYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "82b07fcf-769a-4b52-8d19-1e452369a2d7" + "8f132973-31c2-4b48-91f5-96ebdc15c447" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "These are some random test contents 1234!@", @@ -2734,7 +2782,7 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 21:34:35 GMT" + "Mon, 24 Jul 2017 23:00:24 GMT" ], "Pragma": [ "no-cache" @@ -2743,10 +2791,10 @@ "chunked" ], "x-ms-request-id": [ - "60017931-0731-4be2-b5a5-2a29ec760eef" + "3c82503f-1020-4cb3-b6c5-a3f40971dcbe" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -2763,19 +2811,19 @@ ], "Names": { ".ctor": [ - "datalakerg12554", - "testdatalake15141", - "testadlfs11532" + "datalakerg18995", + "testdatalake15121", + "testadlfs12913" ], "CreateFolder": [ - "SDKTestFolder017119" + "SDKTestFolder011879" ], "CreateFile": [ - "SDKTestFolder017119/SDKTestFile01.txt5159", - "SDKTestFolder017119/SDKTestFile01.txt6454" + "SDKTestFolder011879/SDKTestFile01.txt5093", + "SDKTestFolder011879/SDKTestFile01.txt5005" ] }, "Variables": { - "SubscriptionId": "53d9063d-87ae-4ea8-be90-3686c3b8669f" + "SubscriptionId": "04319d6d-4a66-4701-bb2f-e7dbbd9ae4db" } } \ No newline at end of file diff --git a/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemAppendToFile.json b/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemAppendToFile.json index 0c1673b97ab7..2906bbd49a6c 100644 --- a/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemAppendToFile.json +++ b/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemAppendToFile.json @@ -1,22 +1,23 @@ { "Entries": [ { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "98902518-b82e-4416-8809-4fe982956c38" + "d5e880e2-363c-462a-8c79-77b46ae4fe17" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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" @@ -28,7 +29,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:02:55 GMT" + "Mon, 24 Jul 2017 22:40:56 GMT" ], "Pragma": [ "no-cache" @@ -40,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "f2c96b4e-35dd-45f3-a5a8-6995c71381cd" + "7328f410-3737-42a3-ac64-0066e943cd38" ], "x-ms-correlation-request-id": [ - "f2c96b4e-35dd-45f3-a5a8-6995c71381cd" + "7328f410-3737-42a3-ac64-0066e943cd38" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180256Z:f2c96b4e-35dd-45f3-a5a8-6995c71381cd" + "WESTUS2:20170724T224056Z:7328f410-3737-42a3-ac64-0066e943cd38" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -58,22 +59,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8531a6e4-95a7-4b19-bb56-ac0b2d4d6aec" + "c8c4459a-848e-4088-b5ad-9f3c0c2141b1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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" @@ -85,7 +87,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:02:55 GMT" + "Mon, 24 Jul 2017 22:40:56 GMT" ], "Pragma": [ "no-cache" @@ -94,16 +96,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14991" ], "x-ms-request-id": [ - "d9b2c58b-a5d3-4e0a-b003-21b3a36d262e" + "607d933d-79f7-4f6c-9eb9-9b24bdb3d829" ], "x-ms-correlation-request-id": [ - "d9b2c58b-a5d3-4e0a-b003-21b3a36d262e" + "607d933d-79f7-4f6c-9eb9-9b24bdb3d829" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180256Z:d9b2c58b-a5d3-4e0a-b003-21b3a36d262e" + "WESTUS2:20170724T224057Z:607d933d-79f7-4f6c-9eb9-9b24bdb3d829" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -112,22 +114,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "644cdb5c-ca7a-4e37-9bbb-615e9c772a93" + "c530c4a7-dbfc-40f4-8046-a0e3320a3b87" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/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 \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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 \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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,7 +142,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:02:56 GMT" + "Mon, 24 Jul 2017 22:40:57 GMT" ], "Pragma": [ "no-cache" @@ -151,16 +154,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-request-id": [ - "077db7ee-26e2-439e-a785-279421f8cb4f" + "99b17fe1-30f2-4bf6-b080-dd0626260f28" ], "x-ms-correlation-request-id": [ - "077db7ee-26e2-439e-a785-279421f8cb4f" + "99b17fe1-30f2-4bf6-b080-dd0626260f28" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180257Z:077db7ee-26e2-439e-a785-279421f8cb4f" + "WESTUS2:20170724T224057Z:99b17fe1-30f2-4bf6-b080-dd0626260f28" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -169,22 +172,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3d0d0389-5b1f-48ee-a014-9597b48475ef" + "93a63991-223c-4a05-bdf7-cbe6029fa976" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/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 \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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 \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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" @@ -196,7 +200,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:02:56 GMT" + "Mon, 24 Jul 2017 22:40:57 GMT" ], "Pragma": [ "no-cache" @@ -205,16 +209,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14990" ], "x-ms-request-id": [ - "e83fc951-8001-46b8-9be5-ff96ed3b24b0" + "a5e02c9f-cadb-4613-aaeb-58389654236d" ], "x-ms-correlation-request-id": [ - "e83fc951-8001-46b8-9be5-ff96ed3b24b0" + "a5e02c9f-cadb-4613-aaeb-58389654236d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180257Z:e83fc951-8001-46b8-9be5-ff96ed3b24b0" + "WESTUS2:20170724T224057Z:a5e02c9f-cadb-4613-aaeb-58389654236d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -223,22 +227,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14595?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNDU5NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg13367?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzM2Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3d21e408-9a0a-46a1-8630-94528feb70b5" + "ccda54c4-38e7-4996-bf87-a77563376484" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg14595' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg13367' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -253,7 +258,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:02:56 GMT" + "Mon, 24 Jul 2017 22:40:57 GMT" ], "Pragma": [ "no-cache" @@ -262,16 +267,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14989" ], "x-ms-request-id": [ - "18d8fa05-4b92-4d0a-b550-012e38912697" + "9c6e3e27-9b97-4cd6-9ce6-32b4050614c3" ], "x-ms-correlation-request-id": [ - "18d8fa05-4b92-4d0a-b550-012e38912697" + "9c6e3e27-9b97-4cd6-9ce6-32b4050614c3" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180257Z:18d8fa05-4b92-4d0a-b550-012e38912697" + "WESTUS2:20170724T224057Z:9c6e3e27-9b97-4cd6-9ce6-32b4050614c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -280,22 +285,23 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14595?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNDU5NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg13367?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzM2Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d930058f-c8d2-440b-a820-6c42e331576d" + "72693730-2fe0-4906-ab27-192fea1b903d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg13367\",\r\n \"name\": \"datalakerg13367\",\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 +313,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:02:58 GMT" + "Mon, 24 Jul 2017 22:40:58 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +322,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14988" ], "x-ms-request-id": [ - "0f1f825a-14b6-491c-bf57-ceeae9b021ac" + "03afe036-5a72-4ac5-9812-ce6fe2a60ddd" ], "x-ms-correlation-request-id": [ - "0f1f825a-14b6-491c-bf57-ceeae9b021ac" + "03afe036-5a72-4ac5-9812-ce6fe2a60ddd" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180258Z:0f1f825a-14b6-491c-bf57-ceeae9b021ac" + "WESTUS2:20170724T224059Z:03afe036-5a72-4ac5-9812-ce6fe2a60ddd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +340,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14595?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNDU5NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg13367?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzM2Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,16 +352,17 @@ "31" ], "x-ms-client-request-id": [ - "d686df6b-0d55-40a3-9f00-f59df5fe6f62" + "6f882973-6d01-445e-81a4-6fa89bdf7457" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg13367\",\r\n \"name\": \"datalakerg13367\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -370,22 +377,22 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:02:58 GMT" + "Mon, 24 Jul 2017 22:40:58 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1196" ], "x-ms-request-id": [ - "6ae9aa02-cbb2-4d84-94e9-a9234fd48d60" + "0f6fbe79-81ff-4fed-9e0a-bbfff5e8faed" ], "x-ms-correlation-request-id": [ - "6ae9aa02-cbb2-4d84-94e9-a9234fd48d60" + "0f6fbe79-81ff-4fed-9e0a-bbfff5e8faed" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180258Z:6ae9aa02-cbb2-4d84-94e9-a9234fd48d60" + "WESTUS2:20170724T224059Z:0f6fbe79-81ff-4fed-9e0a-bbfff5e8faed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -394,22 +401,23 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14595/providers/Microsoft.DataLakeStore/accounts/testadlfs17137?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDU5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTcxMzc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg13367/providers/Microsoft.DataLakeStore/accounts/testadlfs13440?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzM2Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTM0NDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "59f0cee3-90f2-4a8f-9fdd-fe60f5a278b4" + "a9b2142e-0b28-45d4-a019-03c5d8ab1087" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs13440' under resource group 'datalakerg13367' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "166" @@ -424,7 +432,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:02:58 GMT" + "Mon, 24 Jul 2017 22:40:59 GMT" ], "Pragma": [ "no-cache" @@ -433,13 +441,13 @@ "gateway" ], "x-ms-request-id": [ - "e2b47dbf-5538-4d7a-983b-d42703064b32" + "96899452-4049-4e0a-9833-e1b048f0751f" ], "x-ms-correlation-request-id": [ - "e2b47dbf-5538-4d7a-983b-d42703064b32" + "96899452-4049-4e0a-9833-e1b048f0751f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180259Z:e2b47dbf-5538-4d7a-983b-d42703064b32" + "WESTUS2:20170724T224059Z:96899452-4049-4e0a-9833-e1b048f0751f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -448,16 +456,17 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14595/providers/Microsoft.DataLakeStore/accounts/testadlfs17137?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDU5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTcxMzc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg13367/providers/Microsoft.DataLakeStore/accounts/testadlfs13440?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzM2Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTM0NDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"testadlfs13440.azuredatalakestore.net\",\r\n \"accountId\": \"26f90d4b-85f9-4109-9e09-787c0e27d371\",\r\n \"creationTime\": \"2017-07-24T22:41:01.8803431Z\",\r\n \"lastModifiedTime\": \"2017-07-24T22:41:01.8803431Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg13367/providers/Microsoft.DataLakeStore/accounts/testadlfs13440\",\r\n \"name\": \"testadlfs13440\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -472,7 +481,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:03:31 GMT" + "Mon, 24 Jul 2017 22:41:35 GMT" ], "Pragma": [ "no-cache" @@ -484,7 +493,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "282fc88b-4007-4f20-a3ea-634b0f2fbb51" + "9e749ab3-7f36-46a5-b533-fe721edc02ec" ], "X-Content-Type-Options": [ "nosniff" @@ -496,13 +505,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14988" ], "x-ms-correlation-request-id": [ - "ed4517a1-92ad-4c39-bc18-65a4d0fe5202" + "4e846180-c083-41f3-aa8a-75476db9a20e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180332Z:ed4517a1-92ad-4c39-bc18-65a4d0fe5202" + "WESTUS2:20170724T224136Z:4e846180-c083-41f3-aa8a-75476db9a20e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -511,22 +520,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14595/providers/Microsoft.DataLakeStore/accounts/testadlfs17137?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDU5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTcxMzc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg13367/providers/Microsoft.DataLakeStore/accounts/testadlfs13440?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzM2Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTM0NDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4dbf01e0-62a3-41a0-8e79-cf3084af9c57" + "fa115012-76cf-4c0d-ac85-7a8a0dbe68e8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"testadlfs13440.azuredatalakestore.net\",\r\n \"accountId\": \"26f90d4b-85f9-4109-9e09-787c0e27d371\",\r\n \"creationTime\": \"2017-07-24T22:41:01.8803431Z\",\r\n \"lastModifiedTime\": \"2017-07-24T22:41:01.8803431Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg13367/providers/Microsoft.DataLakeStore/accounts/testadlfs13440\",\r\n \"name\": \"testadlfs13440\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -541,7 +551,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:03:32 GMT" + "Mon, 24 Jul 2017 22:41:36 GMT" ], "Pragma": [ "no-cache" @@ -553,7 +563,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "03eb4b62-8c98-48bf-b91d-d64b179a50f4" + "2b63e9ea-1a13-4a2b-8673-e57b31d6eb28" ], "X-Content-Type-Options": [ "nosniff" @@ -565,13 +575,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14943" ], "x-ms-correlation-request-id": [ - "8a93df8a-ae6d-429e-99be-159160298d52" + "65951510-aa0f-42d7-bb53-59f3e03195ed" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180332Z:8a93df8a-ae6d-429e-99be-159160298d52" + "WESTUS2:20170724T224137Z:65951510-aa0f-42d7-bb53-59f3e03195ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -580,8 +590,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14595/providers/Microsoft.DataLakeStore/accounts/testadlfs17137?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDU5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTcxMzc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg13367/providers/Microsoft.DataLakeStore/accounts/testadlfs13440?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzM2Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTM0NDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -592,16 +602,17 @@ "31" ], "x-ms-client-request-id": [ - "df073ed6-910d-4655-9cb6-9ac857475034" + "a9af43cf-96b8-48bc-91f6-d0f811613822" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"26f90d4b-85f9-4109-9e09-787c0e27d371\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg13367/providers/Microsoft.DataLakeStore/accounts/testadlfs13440\",\r\n \"name\": \"testadlfs13440\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "420" @@ -619,13 +630,13 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:03:00 GMT" + "Mon, 24 Jul 2017 22:41:00 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14595/providers/Microsoft.DataLakeStore/accounts/testadlfs17137/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg13367/providers/Microsoft.DataLakeStore/accounts/testadlfs13440/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -634,10 +645,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "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" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/26f90d4b-85f9-4109-9e09-787c0e27d3710?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "4912151c-49a2-4304-a258-2e9da3ecba90" + "321c5df2-1955-49b5-a0e9-c46f827a8ac1" ], "X-Content-Type-Options": [ "nosniff" @@ -652,10 +663,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "47fe5334-f856-466b-94db-98d47d86c98b" + "e0ea9480-131a-49e9-9ddc-bacf78ab847f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180301Z:47fe5334-f856-466b-94db-98d47d86c98b" + "WESTUS2:20170724T224101Z:e0ea9480-131a-49e9-9ddc-bacf78ab847f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -664,13 +675,14 @@ "StatusCode": 201 }, { - "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", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/26f90d4b-85f9-4109-9e09-787c0e27d3710?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzI2ZjkwZDRiLTg1ZjktNDEwOS05ZTA5LTc4N2MwZTI3ZDM3MTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -688,7 +700,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:03:30 GMT" + "Mon, 24 Jul 2017 22:41:35 GMT" ], "Pragma": [ "no-cache" @@ -700,7 +712,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e5eef495-e346-4ded-a22b-9eb8e812bcf4" + "cb33dcb1-3e05-4f8e-9685-230123ea4ace" ], "X-Content-Type-Options": [ "nosniff" @@ -712,13 +724,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14987" ], "x-ms-correlation-request-id": [ - "22ca9a33-5a97-4480-bbfa-3f9aabfd27ec" + "bea77ce6-be2a-4d42-a63d-dffd75fa8400" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180331Z:22ca9a33-5a97-4480-bbfa-3f9aabfd27ec" + "WESTUS2:20170724T224135Z:bea77ce6-be2a-4d42-a63d-dffd75fa8400" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -727,8 +739,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt2107?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQyMTA3P3N5bmNGbGFnPURBVEEmb3A9Q1JFQVRFJndyaXRlPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3260?syncFlag=DATA&write=true&op=CREATE&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMjYwP3N5bmNGbGFnPURBVEEmd3JpdGU9dHJ1ZSZvcD1DUkVBVEUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { @@ -739,13 +751,14 @@ "0" ], "x-ms-client-request-id": [ - "fdd290df-91b6-41ee-8e11-b95897c990a1" + "f689f168-64c4-4463-aeeb-41a31d49a16a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "", @@ -760,22 +773,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:03:41 GMT" + "Mon, 24 Jul 2017 22:41:40 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs17137.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt2107?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs13440.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt3260?syncFlag=DATA&write=true&op=CREATE&api-version=2016-11-01" ], "x-ms-request-id": [ - "426decc0-48ad-44c1-87be-a856f52ba7fa" + "9290e473-4103-4c03-8fce-8f5ee0bd3268" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -790,22 +803,23 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt2107?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQyMTA3P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3260?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMjYwP29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df913301-38c2-431a-a159-381b9c070359" + "7db3ad90-962f-479e-9a2c-e78dc90d74d7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1500936101565,\r\n \"modificationTime\": 1500936101565,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "304" @@ -820,16 +834,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:03:42 GMT" + "Mon, 24 Jul 2017 22:41:40 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "2b4922e6-cc22-45ad-baf1-6ddfcdab4568" + "bacc26ad-fc3d-4b78-964e-a56d735fc4d6" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -844,22 +858,23 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt2107?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQyMTA3P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3260?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMjYwP29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a0a4f8a1-ab88-4099-8c33-cb4766ade6b5" + "88af696b-9549-48b4-9488-6a19ec4beec1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 39,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1500936101565,\r\n \"modificationTime\": 1500936101970,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "305" @@ -874,16 +889,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:03:42 GMT" + "Mon, 24 Jul 2017 22:41:41 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "fe795d6b-185a-4df9-9b94-2a965f3f98d6" + "8ba7889b-c944-4a30-b240-198ae57500df" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -898,8 +913,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt2107?op=APPEND&append=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQyMTA3P29wPUFQUEVORCZhcHBlbmQ9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3260?append=true&op=APPEND&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMjYwP2FwcGVuZD10cnVlJm9wPUFQUEVORCZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "POST", "RequestBody": "More test contents, that were appended!", "RequestHeaders": { @@ -910,13 +925,14 @@ "39" ], "x-ms-client-request-id": [ - "3bf52c80-cb3b-4fe0-9dcb-84eb05fe6efb" + "61b9dd1e-a89c-45a8-b0b5-28e907f9a49b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "", @@ -931,16 +947,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:03:42 GMT" + "Mon, 24 Jul 2017 22:41:41 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "88a1a4f9-e38e-4854-854f-b74b1622cd65" + "e50a5926-e3b1-4354-8c36-30e27f33ecca" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -957,15 +973,15 @@ ], "Names": { ".ctor": [ - "datalakerg14595", - "testdatalake14323", - "testadlfs17137" + "datalakerg13367", + "testdatalake13273", + "testadlfs13440" ], "CreateFile": [ - "SDKTestFolder01/SDKTestFile01.txt2107" + "SDKTestFolder01/SDKTestFile01.txt3260" ] }, "Variables": { - "SubscriptionId": "53d9063d-87ae-4ea8-be90-3686c3b8669f" + "SubscriptionId": "04319d6d-4a66-4701-bb2f-e7dbbd9ae4db" } } \ No newline at end of file diff --git a/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemAppendToFileWithBadOffset.json b/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemAppendToFileWithBadOffset.json index 3867e996e670..64b08021f99e 100644 --- a/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemAppendToFileWithBadOffset.json +++ b/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemAppendToFileWithBadOffset.json @@ -1,22 +1,23 @@ { "Entries": [ { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a52526a1-e479-40a3-85d0-a0995c69e8e5" + "d3b74245-3c98-411c-8a91-3ea21bc13faf" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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" @@ -28,7 +29,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:19:10 GMT" + "Mon, 24 Jul 2017 22:54:23 GMT" ], "Pragma": [ "no-cache" @@ -40,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "cf2cb35f-3695-4c4e-a9a9-e7a80d2fef5a" + "ae17a983-fe69-496c-86e7-716090a9851c" ], "x-ms-correlation-request-id": [ - "cf2cb35f-3695-4c4e-a9a9-e7a80d2fef5a" + "ae17a983-fe69-496c-86e7-716090a9851c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T181911Z:cf2cb35f-3695-4c4e-a9a9-e7a80d2fef5a" + "WESTUS:20170724T225424Z:ae17a983-fe69-496c-86e7-716090a9851c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -58,22 +59,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dd7cdbca-5fe5-4672-9c36-9422197022cf" + "7795824b-6636-4a51-ab53-0fe7e48b67d7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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" @@ -85,7 +87,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:19:10 GMT" + "Mon, 24 Jul 2017 22:54:23 GMT" ], "Pragma": [ "no-cache" @@ -94,16 +96,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14990" ], "x-ms-request-id": [ - "919973d7-ab82-40ae-af7d-981133c6ef40" + "aea2ac79-00ee-46cc-a450-d702902eed0b" ], "x-ms-correlation-request-id": [ - "919973d7-ab82-40ae-af7d-981133c6ef40" + "aea2ac79-00ee-46cc-a450-d702902eed0b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T181911Z:919973d7-ab82-40ae-af7d-981133c6ef40" + "WESTUS:20170724T225424Z:aea2ac79-00ee-46cc-a450-d702902eed0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -112,22 +114,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f01b29f7-d52b-4bb2-b053-d6f4fbe5558c" + "361299c0-ef10-4c0e-a8d8-95e3cf3a6a36" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/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 \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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 \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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,7 +142,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:19:11 GMT" + "Mon, 24 Jul 2017 22:54:24 GMT" ], "Pragma": [ "no-cache" @@ -151,16 +154,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-request-id": [ - "3b85a4bd-af29-4e06-8563-a1e18d706dcf" + "f915b2b3-a32d-42fb-8d0c-8fd8f6fbb421" ], "x-ms-correlation-request-id": [ - "3b85a4bd-af29-4e06-8563-a1e18d706dcf" + "f915b2b3-a32d-42fb-8d0c-8fd8f6fbb421" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T181912Z:3b85a4bd-af29-4e06-8563-a1e18d706dcf" + "WESTUS:20170724T225425Z:f915b2b3-a32d-42fb-8d0c-8fd8f6fbb421" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -169,22 +172,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "75baf1cc-c504-42aa-864f-97c7d216ba05" + "d183ab54-fb8a-455e-aa82-351eaca953ea" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/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 \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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 \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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" @@ -196,7 +200,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:19:11 GMT" + "Mon, 24 Jul 2017 22:54:24 GMT" ], "Pragma": [ "no-cache" @@ -205,16 +209,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14989" ], "x-ms-request-id": [ - "c2535934-a2bd-496b-9776-4dd17ca3e66c" + "7c2de388-b3ac-4db3-9206-051f3d1551a4" ], "x-ms-correlation-request-id": [ - "c2535934-a2bd-496b-9776-4dd17ca3e66c" + "7c2de388-b3ac-4db3-9206-051f3d1551a4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T181912Z:c2535934-a2bd-496b-9776-4dd17ca3e66c" + "WESTUS:20170724T225425Z:7c2de388-b3ac-4db3-9206-051f3d1551a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -223,25 +227,26 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1534?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNTM0P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg17590?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzU5MD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "922c8353-33eb-4a75-9e88-123e80a8dc61" + "6a04025b-fe15-4886-9227-76f4230e5002" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg1534' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg17590' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "106" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -253,7 +258,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:19:11 GMT" + "Mon, 24 Jul 2017 22:54:24 GMT" ], "Pragma": [ "no-cache" @@ -262,16 +267,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14988" ], "x-ms-request-id": [ - "70c2e9f1-3c09-4ae8-a15c-2ae45e8ac614" + "7751c2c5-2e4c-4c1c-bf60-ee7adbd3f562" ], "x-ms-correlation-request-id": [ - "70c2e9f1-3c09-4ae8-a15c-2ae45e8ac614" + "7751c2c5-2e4c-4c1c-bf60-ee7adbd3f562" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T181912Z:70c2e9f1-3c09-4ae8-a15c-2ae45e8ac614" + "WESTUS:20170724T225425Z:7751c2c5-2e4c-4c1c-bf60-ee7adbd3f562" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -280,22 +285,23 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1534?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNTM0P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg17590?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzU5MD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "50155ac0-fe98-4c11-bffe-0661ac196b96" + "dd934514-88d7-4d94-9c67-8ed4d7ac1527" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg17590\",\r\n \"name\": \"datalakerg17590\",\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 +313,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:19:13 GMT" + "Mon, 24 Jul 2017 22:54:25 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +322,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14987" ], "x-ms-request-id": [ - "4b0f29b1-f47f-44da-9d0c-65136c28a1bd" + "5aadb392-65ce-43e2-b4c5-485aa2155c56" ], "x-ms-correlation-request-id": [ - "4b0f29b1-f47f-44da-9d0c-65136c28a1bd" + "5aadb392-65ce-43e2-b4c5-485aa2155c56" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T181914Z:4b0f29b1-f47f-44da-9d0c-65136c28a1bd" + "WESTUS:20170724T225426Z:5aadb392-65ce-43e2-b4c5-485aa2155c56" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +340,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1534?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNTM0P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg17590?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzU5MD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,19 +352,20 @@ "31" ], "x-ms-client-request-id": [ - "132691ad-9c6a-44aa-b4a3-60b2a922b29f" + "fda4715f-836f-42c5-91fe-ce5b9128e4dd" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg17590\",\r\n \"name\": \"datalakerg17590\",\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" @@ -370,22 +377,22 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:19:13 GMT" + "Mon, 24 Jul 2017 22:54:25 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1196" ], "x-ms-request-id": [ - "bd9222d1-4595-47b3-8ff2-ac70c1fc0c0e" + "63737f69-c2d5-4c38-a13f-efa42e31517a" ], "x-ms-correlation-request-id": [ - "bd9222d1-4595-47b3-8ff2-ac70c1fc0c0e" + "63737f69-c2d5-4c38-a13f-efa42e31517a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T181914Z:bd9222d1-4595-47b3-8ff2-ac70c1fc0c0e" + "WESTUS:20170724T225426Z:63737f69-c2d5-4c38-a13f-efa42e31517a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -394,25 +401,26 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1534/providers/Microsoft.DataLakeStore/accounts/testadlfs15392?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNTM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxNTM5Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg17590/providers/Microsoft.DataLakeStore/accounts/testadlfs17741?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzU5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc3NDE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "294d1f3a-2c4b-4dd6-9a13-b2d06b7132e3" + "d2a63361-c449-42a4-9abf-d696712d2a24" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs17741' under resource group 'datalakerg17590' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "165" + "166" ], "Content-Type": [ "application/json; charset=utf-8" @@ -424,7 +432,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:19:13 GMT" + "Mon, 24 Jul 2017 22:54:26 GMT" ], "Pragma": [ "no-cache" @@ -433,13 +441,13 @@ "gateway" ], "x-ms-request-id": [ - "78c5e19b-7490-481f-bb35-bb5063c6b596" + "bcd98db3-91db-4519-a40f-f742378efcdd" ], "x-ms-correlation-request-id": [ - "78c5e19b-7490-481f-bb35-bb5063c6b596" + "bcd98db3-91db-4519-a40f-f742378efcdd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T181913Z:78c5e19b-7490-481f-bb35-bb5063c6b596" + "WESTUS:20170724T225426Z:bcd98db3-91db-4519-a40f-f742378efcdd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -448,16 +456,17 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1534/providers/Microsoft.DataLakeStore/accounts/testadlfs15392?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNTM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxNTM5Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg17590/providers/Microsoft.DataLakeStore/accounts/testadlfs17741?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzU5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc3NDE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"testadlfs17741.azuredatalakestore.net\",\r\n \"accountId\": \"57eaab41-4b2e-4a99-995f-afd2f3ef29f1\",\r\n \"creationTime\": \"2017-07-24T22:54:29.8622058Z\",\r\n \"lastModifiedTime\": \"2017-07-24T22:54:29.8622058Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg17590/providers/Microsoft.DataLakeStore/accounts/testadlfs17741\",\r\n \"name\": \"testadlfs17741\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -472,7 +481,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:19:46 GMT" + "Mon, 24 Jul 2017 22:54:59 GMT" ], "Pragma": [ "no-cache" @@ -484,7 +493,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "8ee6a412-a49a-4cb4-9256-429d5cbc3769" + "b417136f-5cdf-4624-83fb-303a0a634f93" ], "X-Content-Type-Options": [ "nosniff" @@ -496,13 +505,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14990" ], "x-ms-correlation-request-id": [ - "8ceeddc8-cc0e-4e95-af6f-e83aa49edc97" + "fc911ec0-427c-421a-ba29-b18a320636ec" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T181946Z:8ceeddc8-cc0e-4e95-af6f-e83aa49edc97" + "WESTUS:20170724T225459Z:fc911ec0-427c-421a-ba29-b18a320636ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -511,22 +520,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1534/providers/Microsoft.DataLakeStore/accounts/testadlfs15392?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNTM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxNTM5Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg17590/providers/Microsoft.DataLakeStore/accounts/testadlfs17741?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzU5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc3NDE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "45133282-3363-46c7-b2cf-4e2ed2126049" + "74b40676-bc1a-4002-a928-56b49b4223b5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"testadlfs17741.azuredatalakestore.net\",\r\n \"accountId\": \"57eaab41-4b2e-4a99-995f-afd2f3ef29f1\",\r\n \"creationTime\": \"2017-07-24T22:54:29.8622058Z\",\r\n \"lastModifiedTime\": \"2017-07-24T22:54:29.8622058Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg17590/providers/Microsoft.DataLakeStore/accounts/testadlfs17741\",\r\n \"name\": \"testadlfs17741\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -541,7 +551,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:19:45 GMT" + "Mon, 24 Jul 2017 22:55:00 GMT" ], "Pragma": [ "no-cache" @@ -553,7 +563,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e8117938-2481-4a76-b470-6d3060a56ce1" + "13ece2d5-06b0-4502-adf0-74b9465fc6f6" ], "X-Content-Type-Options": [ "nosniff" @@ -565,13 +575,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14994" ], "x-ms-correlation-request-id": [ - "6f65cabd-8614-4077-a958-c4e4f65e3ceb" + "5fe0f4de-58ef-4053-8da6-304852656989" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T181946Z:6f65cabd-8614-4077-a958-c4e4f65e3ceb" + "WESTUS:20170724T225500Z:5fe0f4de-58ef-4053-8da6-304852656989" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -580,8 +590,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1534/providers/Microsoft.DataLakeStore/accounts/testadlfs15392?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNTM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxNTM5Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg17590/providers/Microsoft.DataLakeStore/accounts/testadlfs17741?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzU5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc3NDE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -592,19 +602,20 @@ "31" ], "x-ms-client-request-id": [ - "22996e9e-a044-4425-99db-490bd015ba15" + "7a48a1ea-57eb-4179-9864-7640b76bf123" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"57eaab41-4b2e-4a99-995f-afd2f3ef29f1\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg17590/providers/Microsoft.DataLakeStore/accounts/testadlfs17741\",\r\n \"name\": \"testadlfs17741\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "419" + "420" ], "Content-Type": [ "application/json" @@ -619,13 +630,13 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:19:14 GMT" + "Mon, 24 Jul 2017 22:54:28 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1534/providers/Microsoft.DataLakeStore/accounts/testadlfs15392/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg17590/providers/Microsoft.DataLakeStore/accounts/testadlfs17741/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -634,10 +645,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "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" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/57eaab41-4b2e-4a99-995f-afd2f3ef29f10?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "b00f1e7d-a8ea-47ed-b643-8af5f8f81450" + "19eabec2-4910-46f0-9985-627330228d49" ], "X-Content-Type-Options": [ "nosniff" @@ -649,13 +660,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1198" ], "x-ms-correlation-request-id": [ - "79a83afa-e00d-4a1f-b0a3-1c34c750510a" + "c56c46fa-9df1-448f-8d0d-21beb7f3e7c1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T181915Z:79a83afa-e00d-4a1f-b0a3-1c34c750510a" + "WESTUS:20170724T225428Z:c56c46fa-9df1-448f-8d0d-21beb7f3e7c1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -664,13 +675,14 @@ "StatusCode": 201 }, { - "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", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/57eaab41-4b2e-4a99-995f-afd2f3ef29f10?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzU3ZWFhYjQxLTRiMmUtNGE5OS05OTVmLWFmZDJmM2VmMjlmMTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -688,7 +700,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:19:45 GMT" + "Mon, 24 Jul 2017 22:54:59 GMT" ], "Pragma": [ "no-cache" @@ -700,7 +712,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "5d116183-fb4e-4900-8780-99748c1562d4" + "b87fadad-a92d-4eba-88b6-09c0a74a7cea" ], "X-Content-Type-Options": [ "nosniff" @@ -712,13 +724,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14992" ], "x-ms-correlation-request-id": [ - "857896be-6fae-46c1-bfcb-e1c83278635a" + "b20a5076-d406-4f75-9b90-5525fd4bd01d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T181946Z:857896be-6fae-46c1-bfcb-e1c83278635a" + "WESTUS:20170724T225459Z:b20a5076-d406-4f75-9b90-5525fd4bd01d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -727,8 +739,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt5731?op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ1NzMxP29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt291?write=true&op=CREATE&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQyOTE/d3JpdGU9dHJ1ZSZvcD1DUkVBVEUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -739,13 +751,14 @@ "42" ], "x-ms-client-request-id": [ - "34c8673a-9ffa-416b-bb0b-e3da95c647ee" + "50980a48-64a7-49ea-bc97-7191d20a9412" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "", @@ -760,22 +773,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:19:47 GMT" + "Mon, 24 Jul 2017 22:55:05 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs15392.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt5731?op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs17741.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt291?write=true&op=CREATE&api-version=2016-11-01" ], "x-ms-request-id": [ - "e824dcea-86c5-4d3b-a220-ee276df9d520" + "b80a2d9c-29d4-4b06-9969-197bbc1b627b" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -790,22 +803,23 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt5731?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ1NzMxP29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt291?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQyOTE/b3A9R0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "363f0644-afb5-4f9c-aa1c-88b3063a71d8" + "356cd07b-dfa3-4711-99f8-a483db6ae44d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1500936905212,\r\n \"modificationTime\": 1500936905251,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "305" @@ -820,16 +834,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:19:48 GMT" + "Mon, 24 Jul 2017 22:55:05 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "016d8761-5be3-426b-8f16-dfb86e4dffa9" + "7e143e50-d12c-4927-83a7-9c990cf47d2d" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -844,8 +858,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt5731?offset=0&op=APPEND&append=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ1NzMxP29mZnNldD0wJm9wPUFQUEVORCZhcHBlbmQ9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt291?offset=0&append=true&op=APPEND&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQyOTE/b2Zmc2V0PTAmYXBwZW5kPXRydWUmb3A9QVBQRU5EJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "POST", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -856,16 +870,17 @@ "42" ], "x-ms-client-request-id": [ - "04cb8f81-8447-4728-a975-7b506e1eda5a" + "980ad023-aa55-4397-94ef-165233a55a93" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"BadOffsetException\",\r\n \"message\": \"APPEND failed with error 0x83090015 (Bad request. Invalid offset.). [ac6f766d-c1c1-4e12-ba83-79490230234a][2017-07-24T15:55:05.7050561-07:00]\",\r\n \"javaClassName\": \"org.apache.hadoop.fs.adl.BadOffsetException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "270" @@ -880,16 +895,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:19:48 GMT" + "Mon, 24 Jul 2017 22:55:05 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "5fc3eb0f-e2e5-479f-af3d-f2f40f021627" + "ac6f766d-c1c1-4e12-ba83-79490230234a" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x83090015" @@ -906,15 +921,15 @@ ], "Names": { ".ctor": [ - "datalakerg1534", - "testdatalake1304", - "testadlfs15392" + "datalakerg17590", + "testdatalake16746", + "testadlfs17741" ], "CreateFile": [ - "SDKTestFolder01/SDKTestFile01.txt5731" + "SDKTestFolder01/SDKTestFile01.txt291" ] }, "Variables": { - "SubscriptionId": "53d9063d-87ae-4ea8-be90-3686c3b8669f" + "SubscriptionId": "04319d6d-4a66-4701-bb2f-e7dbbd9ae4db" } } \ No newline at end of file diff --git a/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemAppendToFileWithOffset.json b/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemAppendToFileWithOffset.json index 0395e5c0d2ae..e5740db12270 100644 --- a/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemAppendToFileWithOffset.json +++ b/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemAppendToFileWithOffset.json @@ -1,22 +1,23 @@ { "Entries": [ { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "70aa1e68-3504-4b11-a7f1-1110f9f8b5a7" + "297d9be1-4189-4290-9978-d068a95e2d55" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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" @@ -28,7 +29,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:12:09 GMT" + "Mon, 24 Jul 2017 22:48:53 GMT" ], "Pragma": [ "no-cache" @@ -43,13 +44,13 @@ "1199" ], "x-ms-request-id": [ - "9d111bcb-caa0-4421-8041-697adae1f8c6" + "eb99f4f4-234a-4844-983a-2f81bf660f77" ], "x-ms-correlation-request-id": [ - "9d111bcb-caa0-4421-8041-697adae1f8c6" + "eb99f4f4-234a-4844-983a-2f81bf660f77" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181210Z:9d111bcb-caa0-4421-8041-697adae1f8c6" + "WESTUS:20170724T224854Z:eb99f4f4-234a-4844-983a-2f81bf660f77" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -58,22 +59,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cca71a93-4a11-46c2-a71a-99cabd4a8651" + "b89728e7-ef64-4b85-b018-1f9a7880fc52" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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" @@ -85,7 +87,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:12:09 GMT" + "Mon, 24 Jul 2017 22:48:53 GMT" ], "Pragma": [ "no-cache" @@ -97,13 +99,13 @@ "14992" ], "x-ms-request-id": [ - "adf9905a-900f-4b03-b950-92533226208c" + "e416f904-37ee-496b-9c4c-0a075cd28b85" ], "x-ms-correlation-request-id": [ - "adf9905a-900f-4b03-b950-92533226208c" + "e416f904-37ee-496b-9c4c-0a075cd28b85" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181210Z:adf9905a-900f-4b03-b950-92533226208c" + "WESTUS:20170724T224854Z:e416f904-37ee-496b-9c4c-0a075cd28b85" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -112,22 +114,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d9124d91-298d-48d4-bd16-9ec7736d4b7e" + "f08d1880-1663-4b6f-9c21-e145f4ea3f4f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/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 \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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 \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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,7 +142,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:12:15 GMT" + "Mon, 24 Jul 2017 22:48:54 GMT" ], "Pragma": [ "no-cache" @@ -154,13 +157,13 @@ "1198" ], "x-ms-request-id": [ - "edce0958-7bb2-460e-b988-62c696876ab2" + "d0a3d889-ad47-48cc-94a2-1a273556ade3" ], "x-ms-correlation-request-id": [ - "edce0958-7bb2-460e-b988-62c696876ab2" + "d0a3d889-ad47-48cc-94a2-1a273556ade3" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181215Z:edce0958-7bb2-460e-b988-62c696876ab2" + "WESTUS:20170724T224855Z:d0a3d889-ad47-48cc-94a2-1a273556ade3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -169,22 +172,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0ce00842-b886-46a3-bf54-2466bbbe6124" + "9332232a-934e-494c-bd2d-2ba3f4c55c1c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/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 \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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 \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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" @@ -196,7 +200,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:12:15 GMT" + "Mon, 24 Jul 2017 22:48:54 GMT" ], "Pragma": [ "no-cache" @@ -208,13 +212,13 @@ "14991" ], "x-ms-request-id": [ - "8be380a6-476f-4549-be48-f77d4a575060" + "3c75537a-8798-4c83-9b2a-f491865d42f4" ], "x-ms-correlation-request-id": [ - "8be380a6-476f-4549-be48-f77d4a575060" + "3c75537a-8798-4c83-9b2a-f491865d42f4" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181215Z:8be380a6-476f-4549-be48-f77d4a575060" + "WESTUS:20170724T224855Z:3c75537a-8798-4c83-9b2a-f491865d42f4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -223,25 +227,26 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19327?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTMyNz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg1822?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxODIyP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "94e065f9-be57-4bff-a232-f07cef3eeeed" + "6f2a6e24-a543-490c-b791-7e2e6b85746e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg19327' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg1822' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "107" + "106" ], "Content-Type": [ "application/json; charset=utf-8" @@ -253,7 +258,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:12:15 GMT" + "Mon, 24 Jul 2017 22:48:54 GMT" ], "Pragma": [ "no-cache" @@ -265,13 +270,13 @@ "14990" ], "x-ms-request-id": [ - "42b9741c-25b4-4e92-ac39-2e695ebc8bed" + "21962a42-e055-43d2-90ba-4ed85a79997e" ], "x-ms-correlation-request-id": [ - "42b9741c-25b4-4e92-ac39-2e695ebc8bed" + "21962a42-e055-43d2-90ba-4ed85a79997e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181215Z:42b9741c-25b4-4e92-ac39-2e695ebc8bed" + "WESTUS:20170724T224855Z:21962a42-e055-43d2-90ba-4ed85a79997e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -280,22 +285,23 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19327?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTMyNz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg1822?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxODIyP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6f85d6f3-b6ba-4df9-8658-ce1f6c432e4c" + "ca2fafaa-6282-4ff3-bcf2-0fc2fcec1b92" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg1822\",\r\n \"name\": \"datalakerg1822\",\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 +313,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:12:16 GMT" + "Mon, 24 Jul 2017 22:48:56 GMT" ], "Pragma": [ "no-cache" @@ -319,13 +325,13 @@ "14989" ], "x-ms-request-id": [ - "7fbc45a4-cd60-4220-91f9-b713362477cb" + "e3660c51-cba8-41b3-930a-0db3289f68d5" ], "x-ms-correlation-request-id": [ - "7fbc45a4-cd60-4220-91f9-b713362477cb" + "e3660c51-cba8-41b3-930a-0db3289f68d5" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181216Z:7fbc45a4-cd60-4220-91f9-b713362477cb" + "WESTUS:20170724T224856Z:e3660c51-cba8-41b3-930a-0db3289f68d5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +340,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19327?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTMyNz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg1822?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxODIyP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,19 +352,20 @@ "31" ], "x-ms-client-request-id": [ - "99249f55-56f9-45ae-a35e-ec83cc68b22a" + "a7c22cbe-0a9e-4133-98a7-a61a5874b47c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg1822\",\r\n \"name\": \"datalakerg1822\",\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" @@ -370,7 +377,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:12:16 GMT" + "Mon, 24 Jul 2017 22:48:56 GMT" ], "Pragma": [ "no-cache" @@ -379,13 +386,13 @@ "1197" ], "x-ms-request-id": [ - "6bb94ffc-f5a5-47a8-b382-0866349357d4" + "3384d3b2-3bfe-4b43-a517-4deb9798b66f" ], "x-ms-correlation-request-id": [ - "6bb94ffc-f5a5-47a8-b382-0866349357d4" + "3384d3b2-3bfe-4b43-a517-4deb9798b66f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181216Z:6bb94ffc-f5a5-47a8-b382-0866349357d4" + "WESTUS:20170724T224856Z:3384d3b2-3bfe-4b43-a517-4deb9798b66f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -394,25 +401,26 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19327/providers/Microsoft.DataLakeStore/accounts/testadlfs17946?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc5NDY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg1822/providers/Microsoft.DataLakeStore/accounts/testadlfs16640?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxNjY0MD9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c3f0ec86-0d51-45ab-a134-0fa1d0f20ace" + "7ef3262a-34c2-4928-9a2a-67f353261b66" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs16640' under resource group 'datalakerg1822' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "166" + "165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -424,7 +432,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:12:16 GMT" + "Mon, 24 Jul 2017 22:48:56 GMT" ], "Pragma": [ "no-cache" @@ -433,13 +441,13 @@ "gateway" ], "x-ms-request-id": [ - "b2fcec46-4f6c-4228-9aeb-eac8886e676b" + "7db241b7-c84b-40bc-9d33-e4ede52e6a83" ], "x-ms-correlation-request-id": [ - "b2fcec46-4f6c-4228-9aeb-eac8886e676b" + "7db241b7-c84b-40bc-9d33-e4ede52e6a83" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181217Z:b2fcec46-4f6c-4228-9aeb-eac8886e676b" + "WESTUS:20170724T224857Z:7db241b7-c84b-40bc-9d33-e4ede52e6a83" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -448,16 +456,17 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19327/providers/Microsoft.DataLakeStore/accounts/testadlfs17946?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc5NDY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg1822/providers/Microsoft.DataLakeStore/accounts/testadlfs16640?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxNjY0MD9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"testadlfs16640.azuredatalakestore.net\",\r\n \"accountId\": \"922336c5-74dd-46ef-8e56-4475d92da0ce\",\r\n \"creationTime\": \"2017-07-24T22:49:01.6154966Z\",\r\n \"lastModifiedTime\": \"2017-07-24T22:49:01.6154966Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg1822/providers/Microsoft.DataLakeStore/accounts/testadlfs16640\",\r\n \"name\": \"testadlfs16640\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -472,7 +481,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:12:49 GMT" + "Mon, 24 Jul 2017 22:49:30 GMT" ], "Pragma": [ "no-cache" @@ -484,7 +493,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "eef5ccfe-48ef-4b0e-9330-e891feb2bc2f" + "3baf2e2e-99e8-4177-8794-891d574292b8" ], "X-Content-Type-Options": [ "nosniff" @@ -496,13 +505,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14994" ], "x-ms-correlation-request-id": [ - "4388eb3a-68f4-4811-81a2-505756bdc29a" + "19c49f4b-1469-4837-a0fa-9e1bb88f530e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181250Z:4388eb3a-68f4-4811-81a2-505756bdc29a" + "WESTUS:20170724T224930Z:19c49f4b-1469-4837-a0fa-9e1bb88f530e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -511,22 +520,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19327/providers/Microsoft.DataLakeStore/accounts/testadlfs17946?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc5NDY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg1822/providers/Microsoft.DataLakeStore/accounts/testadlfs16640?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxNjY0MD9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2048d8c4-6332-4f54-bea2-591c26ac6fad" + "c676cd75-ed06-42ea-a6c2-9df40eef6f09" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"testadlfs16640.azuredatalakestore.net\",\r\n \"accountId\": \"922336c5-74dd-46ef-8e56-4475d92da0ce\",\r\n \"creationTime\": \"2017-07-24T22:49:01.6154966Z\",\r\n \"lastModifiedTime\": \"2017-07-24T22:49:01.6154966Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg1822/providers/Microsoft.DataLakeStore/accounts/testadlfs16640\",\r\n \"name\": \"testadlfs16640\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -541,7 +551,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:12:50 GMT" + "Mon, 24 Jul 2017 22:49:31 GMT" ], "Pragma": [ "no-cache" @@ -553,7 +563,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "5f1d4dca-e738-48b1-a5b8-ce3cc1c78c15" + "ffab92ee-0411-454f-8d99-0c9c25b3d775" ], "X-Content-Type-Options": [ "nosniff" @@ -565,13 +575,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14874" ], "x-ms-correlation-request-id": [ - "4c0edc92-e69a-4fa1-ad46-07a99e146b3a" + "20e04e86-2ea3-431d-98a0-a58bdc98b4ce" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181251Z:4c0edc92-e69a-4fa1-ad46-07a99e146b3a" + "WESTUS:20170724T224931Z:20e04e86-2ea3-431d-98a0-a58bdc98b4ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -580,8 +590,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19327/providers/Microsoft.DataLakeStore/accounts/testadlfs17946?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc5NDY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg1822/providers/Microsoft.DataLakeStore/accounts/testadlfs16640?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxNjY0MD9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -592,19 +602,20 @@ "31" ], "x-ms-client-request-id": [ - "f1b2a73c-adac-4138-8003-80707c11662e" + "077d9097-8aa4-4cd9-ac76-e2f5db3e77ce" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"922336c5-74dd-46ef-8e56-4475d92da0ce\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg1822/providers/Microsoft.DataLakeStore/accounts/testadlfs16640\",\r\n \"name\": \"testadlfs16640\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "420" + "419" ], "Content-Type": [ "application/json" @@ -619,13 +630,13 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:12:18 GMT" + "Mon, 24 Jul 2017 22:48:59 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19327/providers/Microsoft.DataLakeStore/accounts/testadlfs17946/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg1822/providers/Microsoft.DataLakeStore/accounts/testadlfs16640/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -634,10 +645,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "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" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/922336c5-74dd-46ef-8e56-4475d92da0ce0?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "a42cd0d5-e140-4622-9b07-0c389df5a3a1" + "da4cc1f4-ad48-417b-8818-6170c339c353" ], "X-Content-Type-Options": [ "nosniff" @@ -652,10 +663,10 @@ "1196" ], "x-ms-correlation-request-id": [ - "d1fbf7a8-026b-4aa1-89d3-99491349bc74" + "fc026633-f6c2-439d-b61a-e57e0f179703" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181219Z:d1fbf7a8-026b-4aa1-89d3-99491349bc74" + "WESTUS:20170724T224859Z:fc026633-f6c2-439d-b61a-e57e0f179703" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -664,13 +675,14 @@ "StatusCode": 201 }, { - "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", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/922336c5-74dd-46ef-8e56-4475d92da0ce0?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzkyMjMzNmM1LTc0ZGQtNDZlZi04ZTU2LTQ0NzVkOTJkYTBjZTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -688,7 +700,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:12:49 GMT" + "Mon, 24 Jul 2017 22:49:29 GMT" ], "Pragma": [ "no-cache" @@ -700,7 +712,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "81443d41-e770-47b3-9b2f-2ac792ea922b" + "fd15780e-8728-468e-ae5f-e000891ff4b7" ], "X-Content-Type-Options": [ "nosniff" @@ -715,10 +727,10 @@ "14997" ], "x-ms-correlation-request-id": [ - "d558b5c4-8ba6-4e1f-966f-748bed63f01b" + "02b40a48-8527-471f-969f-7032bf39789f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181250Z:d558b5c4-8ba6-4e1f-966f-748bed63f01b" + "WESTUS:20170724T224930Z:02b40a48-8527-471f-969f-7032bf39789f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -727,8 +739,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt8597?op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ4NTk3P29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7884?write=true&op=CREATE&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3ODg0P3dyaXRlPXRydWUmb3A9Q1JFQVRFJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -739,13 +751,14 @@ "42" ], "x-ms-client-request-id": [ - "4f26db5e-337d-4faf-b32b-fc6d1c038987" + "11e5a2cb-2616-4a8e-a872-7dc7ac9a14cc" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "", @@ -760,22 +773,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:12:53 GMT" + "Mon, 24 Jul 2017 22:49:34 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs17946.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt8597?op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs16640.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt7884?write=true&op=CREATE&api-version=2016-11-01" ], "x-ms-request-id": [ - "947f7021-0a27-491b-880c-40bff16b83f4" + "5af1be20-0bb3-4349-94d4-1babbbe5b4af" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -790,22 +803,23 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt8597?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ4NTk3P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7884?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3ODg0P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bf99e004-ffab-46e0-9d82-36e04b608cef" + "d9f28747-cd4b-4d59-ab04-5d855708aa88" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1500936574345,\r\n \"modificationTime\": 1500936574395,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "305" @@ -820,16 +834,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:12:53 GMT" + "Mon, 24 Jul 2017 22:49:34 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "8c532d2b-4729-4c85-8750-a4b4be86dce6" + "e4202247-5fa3-4d2e-b8a1-ae4c64b3d6f1" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -844,22 +858,23 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt8597?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ4NTk3P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7884?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3ODg0P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "84af75fe-d7b6-4b16-bf91-2e3a99bea7ea" + "3a21de15-895d-418f-a3f7-111c39eeb681" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 84,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1500936574345,\r\n \"modificationTime\": 1500936574879,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "305" @@ -874,16 +889,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:12:54 GMT" + "Mon, 24 Jul 2017 22:49:34 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "78d6c3ef-b2d4-47c7-9750-1d45e8e20613" + "b3897887-b85b-4414-8b55-5bc732d3b55b" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -898,8 +913,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt8597?offset=42&op=APPEND&append=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ4NTk3P29mZnNldD00MiZvcD1BUFBFTkQmYXBwZW5kPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7884?offset=42&append=true&op=APPEND&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3ODg0P29mZnNldD00MiZhcHBlbmQ9dHJ1ZSZvcD1BUFBFTkQmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "POST", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -910,13 +925,14 @@ "42" ], "x-ms-client-request-id": [ - "b0d6c7cc-902c-4058-b417-c07e81a736ab" + "2b75eb02-cf8c-4c41-a12d-78fa5563084a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "", @@ -931,16 +947,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:12:53 GMT" + "Mon, 24 Jul 2017 22:49:34 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "9eed5a5d-0dcd-4903-82f0-a5293c753691" + "8e3330ab-8928-467c-9fba-910dfa406ce3" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -957,15 +973,15 @@ ], "Names": { ".ctor": [ - "datalakerg19327", - "testdatalake19761", - "testadlfs17946" + "datalakerg1822", + "testdatalake12223", + "testadlfs16640" ], "CreateFile": [ - "SDKTestFolder01/SDKTestFile01.txt8597" + "SDKTestFolder01/SDKTestFile01.txt7884" ] }, "Variables": { - "SubscriptionId": "53d9063d-87ae-4ea8-be90-3686c3b8669f" + "SubscriptionId": "04319d6d-4a66-4701-bb2f-e7dbbd9ae4db" } } \ No newline at end of file diff --git a/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemConcatenateFiles.json b/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemConcatenateFiles.json index decf6c179aff..835dd0c477b6 100644 --- a/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemConcatenateFiles.json +++ b/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemConcatenateFiles.json @@ -1,22 +1,23 @@ { "Entries": [ { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e0575692-876d-4a83-9d06-9da6d82c8585" + "e0ae1a40-2bed-49cb-94d0-56f8aba7c1b9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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" @@ -28,7 +29,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:16:36 GMT" + "Mon, 24 Jul 2017 23:09:28 GMT" ], "Pragma": [ "no-cache" @@ -40,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1184" ], "x-ms-request-id": [ - "7b9acf91-1283-4c2a-b1d1-ed0eff2108dc" + "84b4acd9-fdf4-460f-8751-31dbf6b9d499" ], "x-ms-correlation-request-id": [ - "7b9acf91-1283-4c2a-b1d1-ed0eff2108dc" + "84b4acd9-fdf4-460f-8751-31dbf6b9d499" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181636Z:7b9acf91-1283-4c2a-b1d1-ed0eff2108dc" + "WESTUS2:20170724T230929Z:84b4acd9-fdf4-460f-8751-31dbf6b9d499" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -58,22 +59,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "365a6005-ed7d-43fd-b15a-625278577a64" + "4bc1d4d9-c453-4dae-90d9-de3c67bfa298" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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" @@ -85,7 +87,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:16:36 GMT" + "Mon, 24 Jul 2017 23:09:28 GMT" ], "Pragma": [ "no-cache" @@ -94,16 +96,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14963" ], "x-ms-request-id": [ - "2addbb68-ea62-47ff-aa53-90f000b07847" + "1035b8ac-d9c0-4cb7-842b-55356658de81" ], "x-ms-correlation-request-id": [ - "2addbb68-ea62-47ff-aa53-90f000b07847" + "1035b8ac-d9c0-4cb7-842b-55356658de81" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181636Z:2addbb68-ea62-47ff-aa53-90f000b07847" + "WESTUS2:20170724T230929Z:1035b8ac-d9c0-4cb7-842b-55356658de81" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -112,22 +114,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e44a8117-c188-456a-a58e-69a085414997" + "2f8e0196-918e-4435-b86d-b3af74001aa5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/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 \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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 \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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,7 +142,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:16:37 GMT" + "Mon, 24 Jul 2017 23:09:30 GMT" ], "Pragma": [ "no-cache" @@ -151,16 +154,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1183" ], "x-ms-request-id": [ - "4ed16b6d-2838-4f49-a004-fc344e8daadb" + "987e476e-70bc-4e98-a7a3-2f39620846e7" ], "x-ms-correlation-request-id": [ - "4ed16b6d-2838-4f49-a004-fc344e8daadb" + "987e476e-70bc-4e98-a7a3-2f39620846e7" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181637Z:4ed16b6d-2838-4f49-a004-fc344e8daadb" + "WESTUS2:20170724T230931Z:987e476e-70bc-4e98-a7a3-2f39620846e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -169,22 +172,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bfeca382-a009-4d37-99c2-b76a1e626f74" + "00f323e2-737f-459f-a62b-05601ef15969" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/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 \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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 \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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" @@ -196,7 +200,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:16:37 GMT" + "Mon, 24 Jul 2017 23:09:30 GMT" ], "Pragma": [ "no-cache" @@ -205,16 +209,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14962" ], "x-ms-request-id": [ - "a1160d86-b19e-4290-8f80-264920e7b4f0" + "2623262a-d29a-4f35-8850-7a879f201999" ], "x-ms-correlation-request-id": [ - "a1160d86-b19e-4290-8f80-264920e7b4f0" + "2623262a-d29a-4f35-8850-7a879f201999" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181637Z:a1160d86-b19e-4290-8f80-264920e7b4f0" + "WESTUS2:20170724T230931Z:2623262a-d29a-4f35-8850-7a879f201999" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -223,25 +227,26 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg16750?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNjc1MD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg1429?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNDI5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d63a9ea5-0435-4289-b7f2-5e57c24a227f" + "1cb0bd51-df02-445d-b2fb-49259d3f2f30" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg16750' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg1429' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "107" + "106" ], "Content-Type": [ "application/json; charset=utf-8" @@ -253,7 +258,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:16:37 GMT" + "Mon, 24 Jul 2017 23:09:30 GMT" ], "Pragma": [ "no-cache" @@ -262,16 +267,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14961" ], "x-ms-request-id": [ - "415703a2-cdf6-433d-b1f5-d07ebfdd671f" + "4e9e4c8e-cb5a-4a5d-9b0c-70f32f7da231" ], "x-ms-correlation-request-id": [ - "415703a2-cdf6-433d-b1f5-d07ebfdd671f" + "4e9e4c8e-cb5a-4a5d-9b0c-70f32f7da231" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181637Z:415703a2-cdf6-433d-b1f5-d07ebfdd671f" + "WESTUS2:20170724T230931Z:4e9e4c8e-cb5a-4a5d-9b0c-70f32f7da231" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -280,22 +285,23 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg16750?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNjc1MD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg1429?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNDI5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "482eaaba-ed3b-438d-8893-04544a7620b0" + "bf4e694e-b548-4dca-83d7-c78e031dc65f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg1429\",\r\n \"name\": \"datalakerg1429\",\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 +313,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:16:38 GMT" + "Mon, 24 Jul 2017 23:09:32 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +322,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14960" ], "x-ms-request-id": [ - "59325d55-8173-4bf7-9292-7c67360471be" + "d20d3019-7a46-45fd-bbec-9c0e4de290b1" ], "x-ms-correlation-request-id": [ - "59325d55-8173-4bf7-9292-7c67360471be" + "d20d3019-7a46-45fd-bbec-9c0e4de290b1" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181638Z:59325d55-8173-4bf7-9292-7c67360471be" + "WESTUS2:20170724T230932Z:d20d3019-7a46-45fd-bbec-9c0e4de290b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +340,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg16750?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNjc1MD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg1429?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNDI5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,19 +352,20 @@ "31" ], "x-ms-client-request-id": [ - "3adaf20e-15ea-4b25-a1b8-0cf22b294ca9" + "985e3cef-6074-4941-925d-90a915ff62fb" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg1429\",\r\n \"name\": \"datalakerg1429\",\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" @@ -370,22 +377,22 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:16:38 GMT" + "Mon, 24 Jul 2017 23:09:32 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1182" ], "x-ms-request-id": [ - "0a635e86-7697-453c-8e24-3232bff59f4e" + "cb096238-340c-47f2-9ecd-8fccdf702c14" ], "x-ms-correlation-request-id": [ - "0a635e86-7697-453c-8e24-3232bff59f4e" + "cb096238-340c-47f2-9ecd-8fccdf702c14" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181638Z:0a635e86-7697-453c-8e24-3232bff59f4e" + "WESTUS2:20170724T230932Z:cb096238-340c-47f2-9ecd-8fccdf702c14" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -394,25 +401,26 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16750/providers/Microsoft.DataLakeStore/accounts/testadlfs16984?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjc1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTY5ODQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg1429/providers/Microsoft.DataLakeStore/accounts/testadlfs1741?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxNzQxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e7e2d558-b0c1-4e51-973c-a1b680a95a43" + "d9ef059e-1008-4d27-be77-3bc26e40c24d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs1741' under resource group 'datalakerg1429' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "166" + "164" ], "Content-Type": [ "application/json; charset=utf-8" @@ -424,7 +432,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:16:38 GMT" + "Mon, 24 Jul 2017 23:09:31 GMT" ], "Pragma": [ "no-cache" @@ -433,13 +441,13 @@ "gateway" ], "x-ms-request-id": [ - "75977099-d576-4e44-a8e1-106351024a34" + "5d86a7aa-0dda-47b5-aa78-b9e1922b5f68" ], "x-ms-correlation-request-id": [ - "75977099-d576-4e44-a8e1-106351024a34" + "5d86a7aa-0dda-47b5-aa78-b9e1922b5f68" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181639Z:75977099-d576-4e44-a8e1-106351024a34" + "WESTUS2:20170724T230932Z:5d86a7aa-0dda-47b5-aa78-b9e1922b5f68" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -448,16 +456,17 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16750/providers/Microsoft.DataLakeStore/accounts/testadlfs16984?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjc1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTY5ODQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg1429/providers/Microsoft.DataLakeStore/accounts/testadlfs1741?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxNzQxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"testadlfs1741.azuredatalakestore.net\",\r\n \"accountId\": \"31278a9a-cbc4-497e-a3e8-dc11496a23c2\",\r\n \"creationTime\": \"2017-07-24T23:09:35.7890405Z\",\r\n \"lastModifiedTime\": \"2017-07-24T23:09:35.7890405Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg1429/providers/Microsoft.DataLakeStore/accounts/testadlfs1741\",\r\n \"name\": \"testadlfs1741\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -472,7 +481,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:17:11 GMT" + "Mon, 24 Jul 2017 23:10:06 GMT" ], "Pragma": [ "no-cache" @@ -484,7 +493,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "491de285-8b1b-4567-8550-02cb98bb2adf" + "2539c14a-dadf-4850-a53f-04221b800fe8" ], "X-Content-Type-Options": [ "nosniff" @@ -496,13 +505,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14987" ], "x-ms-correlation-request-id": [ - "252e401e-933d-49fe-9196-442f0e77922f" + "ac9b9aff-c04a-48fc-b28f-1858c4f97766" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181711Z:252e401e-933d-49fe-9196-442f0e77922f" + "WESTUS2:20170724T231007Z:ac9b9aff-c04a-48fc-b28f-1858c4f97766" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -511,22 +520,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16750/providers/Microsoft.DataLakeStore/accounts/testadlfs16984?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjc1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTY5ODQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg1429/providers/Microsoft.DataLakeStore/accounts/testadlfs1741?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxNzQxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e5e114cc-4172-4c37-a3b6-9b047b894581" + "63e204b1-2466-40dc-b07d-5ad3d59e619c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"testadlfs1741.azuredatalakestore.net\",\r\n \"accountId\": \"31278a9a-cbc4-497e-a3e8-dc11496a23c2\",\r\n \"creationTime\": \"2017-07-24T23:09:35.7890405Z\",\r\n \"lastModifiedTime\": \"2017-07-24T23:09:35.7890405Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg1429/providers/Microsoft.DataLakeStore/accounts/testadlfs1741\",\r\n \"name\": \"testadlfs1741\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -541,7 +551,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:17:11 GMT" + "Mon, 24 Jul 2017 23:10:09 GMT" ], "Pragma": [ "no-cache" @@ -553,7 +563,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "03857a7a-380e-4097-8786-96e6660920b1" + "4dcf806e-a464-4cf5-88ea-f1dc8993fa76" ], "X-Content-Type-Options": [ "nosniff" @@ -565,13 +575,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14981" ], "x-ms-correlation-request-id": [ - "d3a51e87-22fe-47c6-ac66-8f38e6419655" + "807cd84b-e959-4424-a50f-95f3e9fbecf5" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181712Z:d3a51e87-22fe-47c6-ac66-8f38e6419655" + "WESTUS2:20170724T231009Z:807cd84b-e959-4424-a50f-95f3e9fbecf5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -580,8 +590,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16750/providers/Microsoft.DataLakeStore/accounts/testadlfs16984?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjc1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTY5ODQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg1429/providers/Microsoft.DataLakeStore/accounts/testadlfs1741?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxNzQxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -592,19 +602,20 @@ "31" ], "x-ms-client-request-id": [ - "4955b602-abec-4370-b4a0-4158f50bb0b4" + "f29a5d2e-ec8c-4624-8ca4-66644c611734" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"31278a9a-cbc4-497e-a3e8-dc11496a23c2\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg1429/providers/Microsoft.DataLakeStore/accounts/testadlfs1741\",\r\n \"name\": \"testadlfs1741\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "420" + "417" ], "Content-Type": [ "application/json" @@ -619,13 +630,13 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:16:39 GMT" + "Mon, 24 Jul 2017 23:09:33 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg16750/providers/Microsoft.DataLakeStore/accounts/testadlfs16984/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg1429/providers/Microsoft.DataLakeStore/accounts/testadlfs1741/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -634,10 +645,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "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" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/31278a9a-cbc4-497e-a3e8-dc11496a23c20?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "b86e8d1a-80f8-4ed8-8077-6d3b32eea914" + "94748c72-638d-4c7c-bf63-666e97074536" ], "X-Content-Type-Options": [ "nosniff" @@ -649,13 +660,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1189" ], "x-ms-correlation-request-id": [ - "22c9a962-5db8-4263-b846-603a0ac67bbb" + "60db62d4-ed90-4cf5-a000-5896b6dcf9ec" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181640Z:22c9a962-5db8-4263-b846-603a0ac67bbb" + "WESTUS2:20170724T230934Z:60db62d4-ed90-4cf5-a000-5896b6dcf9ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -664,13 +675,14 @@ "StatusCode": 201 }, { - "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", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/31278a9a-cbc4-497e-a3e8-dc11496a23c20?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzMxMjc4YTlhLWNiYzQtNDk3ZS1hM2U4LWRjMTE0OTZhMjNjMjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -688,7 +700,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:17:10 GMT" + "Mon, 24 Jul 2017 23:10:05 GMT" ], "Pragma": [ "no-cache" @@ -700,7 +712,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "836978bd-a633-4ad3-9ccb-eb30a2fadb12" + "da308e45-f9a6-4e52-a656-f462c82b077f" ], "X-Content-Type-Options": [ "nosniff" @@ -712,13 +724,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14983" ], "x-ms-correlation-request-id": [ - "fc41c6ba-589e-4c23-afb1-dad5cf0b0b46" + "82e6292b-f41c-47c9-a8e0-50e4aeddec07" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181711Z:fc41c6ba-589e-4c23-afb1-dad5cf0b0b46" + "WESTUS2:20170724T231005Z:82e6292b-f41c-47c9-a8e0-50e4aeddec07" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -727,8 +739,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3408?op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzNDA4P29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt9060?write=true&op=CREATE&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ5MDYwP3dyaXRlPXRydWUmb3A9Q1JFQVRFJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -739,13 +751,14 @@ "42" ], "x-ms-client-request-id": [ - "1c1fc33b-afc2-4496-b9f4-b32d19795611" + "c531f797-54b3-4adf-95ff-b5cdbdfe7aa3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "", @@ -760,22 +773,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:17:17 GMT" + "Mon, 24 Jul 2017 23:10:13 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs16984.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt3408?op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs1741.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt9060?write=true&op=CREATE&api-version=2016-11-01" ], "x-ms-request-id": [ - "b62b1580-63d5-470d-b33e-51f969269bf6" + "87b1c15a-dbf8-4556-831c-463afa6fa741" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -790,22 +803,23 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3408?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzNDA4P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt9060?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ5MDYwP29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "091fd084-4432-4778-b567-8dec5eb1cdc0" + "737588a0-1fa1-46aa-81d4-501eaf03ad95" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1500937813246,\r\n \"modificationTime\": 1500937813308,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "305" @@ -820,16 +834,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:17:17 GMT" + "Mon, 24 Jul 2017 23:10:13 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "f5de3b90-da29-4b7b-9e6a-cdd5e7be7750" + "3896c632-98d6-4340-8c8b-dd9fb5a19f0c" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -844,22 +858,23 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3408?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzNDA4P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt9060?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ5MDYwP29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2ae0a418-51f0-493f-968a-072c4dbc95c6" + "bdc8ec37-178b-4750-8056-43e4a7a20d33" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder01/SDKTestFile01.txt9060 [48c66baf-f506-47ad-8394-d8038decd401][2017-07-24T16:10:14.8714043-07:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "258" @@ -874,16 +889,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:17:18 GMT" + "Mon, 24 Jul 2017 23:10:14 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "c11b0622-9103-4336-95bc-dff861fac219" + "48c66baf-f506-47ad-8394-d8038decd401" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x8309000A" @@ -898,8 +913,8 @@ "StatusCode": 404 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt6668?op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ2NjY4P29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt2727?write=true&op=CREATE&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQyNzI3P3dyaXRlPXRydWUmb3A9Q1JFQVRFJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -910,13 +925,14 @@ "42" ], "x-ms-client-request-id": [ - "3ef5eb81-0b91-409a-854e-eccb510ab07a" + "18cfc675-cef0-4a2d-8802-3b64f131edcc" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "", @@ -931,22 +947,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:17:17 GMT" + "Mon, 24 Jul 2017 23:10:14 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs16984.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt6668?op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs1741.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt2727?write=true&op=CREATE&api-version=2016-11-01" ], "x-ms-request-id": [ - "21e20506-3523-4048-93af-04e3e294335e" + "0c3634bf-a0dd-4ae6-9011-c71033b69eb4" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -961,22 +977,23 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt6668?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ2NjY4P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt2727?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQyNzI3P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c36d6513-2bb8-4a87-be64-d5aaec8fe77a" + "9a30f052-a052-48b2-ac95-3d049b49dfdd" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1500937813794,\r\n \"modificationTime\": 1500937813832,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "305" @@ -991,16 +1008,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:17:17 GMT" + "Mon, 24 Jul 2017 23:10:14 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "082d2970-e70e-4f90-bb5e-f21fe164a9c0" + "0d91223b-72e9-4a16-b0d7-529230397387" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -1015,22 +1032,23 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt6668?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ2NjY4P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt2727?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQyNzI3P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f5755211-5eb3-49af-9ebe-356cc1aa2d9f" + "9e3119a9-b41a-4229-8034-1f82aec49ce1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder01/SDKTestFile01.txt2727 [b9263d35-4f9d-429f-9f34-9a68a75bd2f1][2017-07-24T16:10:14.9964128-07:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "258" @@ -1045,16 +1063,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:17:18 GMT" + "Mon, 24 Jul 2017 23:10:14 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "84507f38-b08e-40a6-b77c-f62694174565" + "b9263d35-4f9d-429f-9f34-9a68a75bd2f1" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x8309000A" @@ -1069,19 +1087,20 @@ "StatusCode": 404 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019364?op=MKDIRS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTM2ND9vcD1NS0RJUlMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder019092?op=MKDIRS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTA5Mj9vcD1NS0RJUlMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a090af48-8e02-46e8-9030-c9ce3bd51c79" + "bea215d5-860c-4418-ba8c-aa559e73a40e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "{\r\n \"boolean\": true\r\n}", @@ -1099,16 +1118,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:17:17 GMT" + "Mon, 24 Jul 2017 23:10:14 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "eb515ede-6c63-425a-a68b-c64d13f580f0" + "73d67774-694b-4d07-9dfd-d961a5968ba1" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -1123,19 +1142,20 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019364%2FSDKTestConcatFile01.txt?sources=SDKTestFolder01%2FSDKTestFile01.txt3408%2CSDKTestFolder01%2FSDKTestFile01.txt6668&op=CONCAT&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTM2NCUyRlNES1Rlc3RDb25jYXRGaWxlMDEudHh0P3NvdXJjZXM9U0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzNDA4JTJDU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ2NjY4Jm9wPUNPTkNBVCZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder019092%2FSDKTestConcatFile01.txt?sources=SDKTestFolder01%2FSDKTestFile01.txt9060%2CSDKTestFolder01%2FSDKTestFile01.txt2727&op=CONCAT&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTA5MiUyRlNES1Rlc3RDb25jYXRGaWxlMDEudHh0P3NvdXJjZXM9U0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ5MDYwJTJDU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQyNzI3Jm9wPUNPTkNBVCZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "86ff465d-9d56-4c51-8653-9fd9777dae70" + "173d67b9-8487-4118-a748-1b2be6532d00" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "", @@ -1150,16 +1170,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:17:18 GMT" + "Mon, 24 Jul 2017 23:10:14 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "554ff7bb-3ee9-4e87-bd7d-91df80c547e3" + "aae5aaec-7276-4ecf-86fa-9a13c463b32c" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -1174,22 +1194,23 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019364%2FSDKTestConcatFile01.txt?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTM2NCUyRlNES1Rlc3RDb25jYXRGaWxlMDEudHh0P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder019092%2FSDKTestConcatFile01.txt?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTA5MiUyRlNES1Rlc3RDb25jYXRGaWxlMDEudHh0P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e31efa16-8a17-40f1-ab7d-4aa0006161b3" + "c4177553-ac52-47af-9a85-3b12c9528977" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 84,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1500937814541,\r\n \"modificationTime\": 1500937814567,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "305" @@ -1204,16 +1225,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:17:18 GMT" + "Mon, 24 Jul 2017 23:10:14 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "33495cb8-13ea-4445-8b61-affb9c0c1327" + "bf3b1de9-7fba-44dc-8e7e-a6952974cc55" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -1230,19 +1251,19 @@ ], "Names": { ".ctor": [ - "datalakerg16750", - "testdatalake11945", - "testadlfs16984" + "datalakerg1429", + "testdatalake11564", + "testadlfs1741" ], "CreateFile": [ - "SDKTestFolder01/SDKTestFile01.txt3408", - "SDKTestFolder01/SDKTestFile01.txt6668" + "SDKTestFolder01/SDKTestFile01.txt9060", + "SDKTestFolder01/SDKTestFile01.txt2727" ], "CreateFolder": [ - "SDKTestFolder019364" + "SDKTestFolder019092" ] }, "Variables": { - "SubscriptionId": "53d9063d-87ae-4ea8-be90-3686c3b8669f" + "SubscriptionId": "04319d6d-4a66-4701-bb2f-e7dbbd9ae4db" } } \ No newline at end of file diff --git a/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemConcurrentAppendCreateFile.json b/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemConcurrentAppendCreateFile.json index 9ada5effbae0..1abb8a1ba5ed 100644 --- a/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemConcurrentAppendCreateFile.json +++ b/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemConcurrentAppendCreateFile.json @@ -1,22 +1,23 @@ { "Entries": [ { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9e284be-6581-42c6-86db-f323a0565840" + "bd5300e9-8697-4006-9176-1a0038dc6ed7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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" @@ -28,7 +29,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:09:27 GMT" + "Mon, 24 Jul 2017 23:08:39 GMT" ], "Pragma": [ "no-cache" @@ -40,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1195" ], "x-ms-request-id": [ - "4e4cbe26-fe26-425e-b1ef-4e27a3e41c68" + "a2a9b77b-76aa-40c1-a596-a904b8e69aa9" ], "x-ms-correlation-request-id": [ - "4e4cbe26-fe26-425e-b1ef-4e27a3e41c68" + "a2a9b77b-76aa-40c1-a596-a904b8e69aa9" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180928Z:4e4cbe26-fe26-425e-b1ef-4e27a3e41c68" + "WESTUS:20170724T230839Z:a2a9b77b-76aa-40c1-a596-a904b8e69aa9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -58,22 +59,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "94236c1c-7661-46d5-8ab3-c992fdac0181" + "e166ce99-f7cd-4bc9-853c-c24d778e7663" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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" @@ -85,7 +87,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:09:27 GMT" + "Mon, 24 Jul 2017 23:08:39 GMT" ], "Pragma": [ "no-cache" @@ -94,16 +96,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14989" ], "x-ms-request-id": [ - "8bc53be6-e910-4a78-9bdd-35849209bda2" + "c178f847-5232-4e55-93af-0a6845b4ba72" ], "x-ms-correlation-request-id": [ - "8bc53be6-e910-4a78-9bdd-35849209bda2" + "c178f847-5232-4e55-93af-0a6845b4ba72" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180928Z:8bc53be6-e910-4a78-9bdd-35849209bda2" + "WESTUS:20170724T230839Z:c178f847-5232-4e55-93af-0a6845b4ba72" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -112,22 +114,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d0ccb26f-9617-4bcf-afde-52653de50d4e" + "d4400b28-9f09-40ab-8054-ce7afc4b0044" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/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 \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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 \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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,7 +142,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:09:28 GMT" + "Mon, 24 Jul 2017 23:08:39 GMT" ], "Pragma": [ "no-cache" @@ -151,16 +154,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1194" ], "x-ms-request-id": [ - "dcc5ea00-feeb-4115-82b4-7646a2fb4d0c" + "2d823a0e-dece-4193-b3f9-05d297b9962f" ], "x-ms-correlation-request-id": [ - "dcc5ea00-feeb-4115-82b4-7646a2fb4d0c" + "2d823a0e-dece-4193-b3f9-05d297b9962f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180929Z:dcc5ea00-feeb-4115-82b4-7646a2fb4d0c" + "WESTUS:20170724T230840Z:2d823a0e-dece-4193-b3f9-05d297b9962f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -169,22 +172,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "98a6269c-0799-4a8b-832e-816df878fb1c" + "3f6eab35-78c2-4772-9e72-ae39849916b3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/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 \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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 \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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" @@ -196,7 +200,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:09:28 GMT" + "Mon, 24 Jul 2017 23:08:40 GMT" ], "Pragma": [ "no-cache" @@ -205,16 +209,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14988" ], "x-ms-request-id": [ - "44d0e06e-0454-4488-8688-5087dfb6b3ca" + "ffc86fbb-6ad0-4050-a71f-5e0bb9424177" ], "x-ms-correlation-request-id": [ - "44d0e06e-0454-4488-8688-5087dfb6b3ca" + "ffc86fbb-6ad0-4050-a71f-5e0bb9424177" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180929Z:44d0e06e-0454-4488-8688-5087dfb6b3ca" + "WESTUS:20170724T230840Z:ffc86fbb-6ad0-4050-a71f-5e0bb9424177" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -223,22 +227,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg16772?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNjc3Mj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg11275?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTI3NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a3086aab-b42e-4dd7-8493-76a68fdf4045" + "fe1b4884-fe43-47c5-83f1-6f2e0ec368d0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg16772' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg11275' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -253,7 +258,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:09:28 GMT" + "Mon, 24 Jul 2017 23:08:40 GMT" ], "Pragma": [ "no-cache" @@ -262,16 +267,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14987" ], "x-ms-request-id": [ - "8f86d7b2-b2ca-4cd3-84f6-c71b81a740fe" + "41702742-f292-45e9-97ba-869b84374188" ], "x-ms-correlation-request-id": [ - "8f86d7b2-b2ca-4cd3-84f6-c71b81a740fe" + "41702742-f292-45e9-97ba-869b84374188" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180929Z:8f86d7b2-b2ca-4cd3-84f6-c71b81a740fe" + "WESTUS:20170724T230840Z:41702742-f292-45e9-97ba-869b84374188" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -280,22 +285,23 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg16772?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNjc3Mj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg11275?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTI3NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "55b64f61-6e7f-43a9-a364-2fcdb266cf70" + "243d9488-494c-4fc2-80a2-dd1f75ac3ae1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg11275\",\r\n \"name\": \"datalakerg11275\",\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 +313,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:09:29 GMT" + "Mon, 24 Jul 2017 23:08:41 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +322,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14986" ], "x-ms-request-id": [ - "ff664557-12cd-4070-9af7-f28d6f15eb31" + "9e0d2cde-e039-4db6-b4a7-386ae0cb7fd8" ], "x-ms-correlation-request-id": [ - "ff664557-12cd-4070-9af7-f28d6f15eb31" + "9e0d2cde-e039-4db6-b4a7-386ae0cb7fd8" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180930Z:ff664557-12cd-4070-9af7-f28d6f15eb31" + "WESTUS:20170724T230841Z:9e0d2cde-e039-4db6-b4a7-386ae0cb7fd8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +340,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg16772?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNjc3Mj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg11275?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTI3NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,16 +352,17 @@ "31" ], "x-ms-client-request-id": [ - "91c02089-ab24-444c-bb58-ca6358c421a8" + "377457dd-9058-4215-9ce8-e7c8ba3a9236" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg11275\",\r\n \"name\": \"datalakerg11275\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -370,22 +377,22 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:09:29 GMT" + "Mon, 24 Jul 2017 23:08:41 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1193" ], "x-ms-request-id": [ - "1ade7e2a-92ff-4a44-b39e-6f8d4bc365f9" + "9610b434-763b-48d4-b76e-fa3c123e938a" ], "x-ms-correlation-request-id": [ - "1ade7e2a-92ff-4a44-b39e-6f8d4bc365f9" + "9610b434-763b-48d4-b76e-fa3c123e938a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180930Z:1ade7e2a-92ff-4a44-b39e-6f8d4bc365f9" + "WESTUS:20170724T230841Z:9610b434-763b-48d4-b76e-fa3c123e938a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -394,22 +401,23 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16772/providers/Microsoft.DataLakeStore/accounts/testadlfs18233?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjc3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTgyMzM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg11275/providers/Microsoft.DataLakeStore/accounts/testadlfs15371?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTI3NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTUzNzE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7ae7380b-8c43-4c79-80d6-84c4198f2616" + "89acea72-ec66-4c65-ae41-83ece7f15078" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs15371' under resource group 'datalakerg11275' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "166" @@ -424,7 +432,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:09:29 GMT" + "Mon, 24 Jul 2017 23:08:41 GMT" ], "Pragma": [ "no-cache" @@ -433,13 +441,13 @@ "gateway" ], "x-ms-request-id": [ - "835473b1-8b4d-44ab-b226-deacfe81c55b" + "e86dc04b-2672-4f5d-9d54-5ab73b3158a2" ], "x-ms-correlation-request-id": [ - "835473b1-8b4d-44ab-b226-deacfe81c55b" + "e86dc04b-2672-4f5d-9d54-5ab73b3158a2" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180930Z:835473b1-8b4d-44ab-b226-deacfe81c55b" + "WESTUS:20170724T230842Z:e86dc04b-2672-4f5d-9d54-5ab73b3158a2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -448,16 +456,17 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16772/providers/Microsoft.DataLakeStore/accounts/testadlfs18233?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjc3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTgyMzM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg11275/providers/Microsoft.DataLakeStore/accounts/testadlfs15371?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTI3NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTUzNzE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"testadlfs15371.azuredatalakestore.net\",\r\n \"accountId\": \"242a8e54-76f5-49ae-aee9-63b047daee2d\",\r\n \"creationTime\": \"2017-07-24T23:08:45.3573253Z\",\r\n \"lastModifiedTime\": \"2017-07-24T23:08:45.3573253Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg11275/providers/Microsoft.DataLakeStore/accounts/testadlfs15371\",\r\n \"name\": \"testadlfs15371\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -472,7 +481,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:10:33 GMT" + "Mon, 24 Jul 2017 23:09:14 GMT" ], "Pragma": [ "no-cache" @@ -484,7 +493,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "80fb73e4-c8e0-40d5-a5ad-3420e1e7d796" + "debe7047-6255-4395-9c54-04a87ac85a22" ], "X-Content-Type-Options": [ "nosniff" @@ -496,13 +505,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14907" ], "x-ms-correlation-request-id": [ - "81e0ab3c-6c79-4bbf-95b0-00e7f7a12c49" + "0178d1d5-4a58-4152-9f82-310d8f51e919" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181033Z:81e0ab3c-6c79-4bbf-95b0-00e7f7a12c49" + "WESTUS:20170724T230915Z:0178d1d5-4a58-4152-9f82-310d8f51e919" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -511,22 +520,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16772/providers/Microsoft.DataLakeStore/accounts/testadlfs18233?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjc3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTgyMzM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg11275/providers/Microsoft.DataLakeStore/accounts/testadlfs15371?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTI3NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTUzNzE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "006cd93c-66e8-4fc9-9e9f-7d03611a3e9a" + "3591997c-92e4-49ea-a431-5abe0e1dad7b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"testadlfs15371.azuredatalakestore.net\",\r\n \"accountId\": \"242a8e54-76f5-49ae-aee9-63b047daee2d\",\r\n \"creationTime\": \"2017-07-24T23:08:45.3573253Z\",\r\n \"lastModifiedTime\": \"2017-07-24T23:08:45.3573253Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg11275/providers/Microsoft.DataLakeStore/accounts/testadlfs15371\",\r\n \"name\": \"testadlfs15371\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -541,7 +551,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:10:33 GMT" + "Mon, 24 Jul 2017 23:09:16 GMT" ], "Pragma": [ "no-cache" @@ -553,7 +563,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e1665423-f314-4627-94fb-c71545f10827" + "bad7e744-dee3-4d33-bb14-dcd77ead16b4" ], "X-Content-Type-Options": [ "nosniff" @@ -565,13 +575,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14990" ], "x-ms-correlation-request-id": [ - "150139d6-3810-4f43-a307-7bee26b75863" + "f88de9b5-e350-4833-a6ef-119da381b7e0" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181034Z:150139d6-3810-4f43-a307-7bee26b75863" + "WESTUS:20170724T230917Z:f88de9b5-e350-4833-a6ef-119da381b7e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -580,8 +590,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16772/providers/Microsoft.DataLakeStore/accounts/testadlfs18233?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjc3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTgyMzM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg11275/providers/Microsoft.DataLakeStore/accounts/testadlfs15371?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTI3NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTUzNzE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -592,16 +602,17 @@ "31" ], "x-ms-client-request-id": [ - "d44c33f6-2a16-4f48-bbd7-dbfba7fe6bf3" + "0d77ff01-004c-40ac-bc98-7b478137e6eb" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"242a8e54-76f5-49ae-aee9-63b047daee2d\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg11275/providers/Microsoft.DataLakeStore/accounts/testadlfs15371\",\r\n \"name\": \"testadlfs15371\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "420" @@ -619,13 +630,13 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:09:31 GMT" + "Mon, 24 Jul 2017 23:08:43 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg16772/providers/Microsoft.DataLakeStore/accounts/testadlfs18233/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg11275/providers/Microsoft.DataLakeStore/accounts/testadlfs15371/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -634,10 +645,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "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" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/242a8e54-76f5-49ae-aee9-63b047daee2d0?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "66e3ac20-a07b-4ba9-8dcc-17380602c923" + "a356ed2c-5aca-4766-b9b8-0e77045eb825" ], "X-Content-Type-Options": [ "nosniff" @@ -649,13 +660,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1197" ], "x-ms-correlation-request-id": [ - "73332519-5fef-405d-870e-c6e12fd51ab7" + "1c9868eb-c20e-4343-beba-7abab5de55ab" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180932Z:73332519-5fef-405d-870e-c6e12fd51ab7" + "WESTUS:20170724T230844Z:1c9868eb-c20e-4343-beba-7abab5de55ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -664,76 +675,14 @@ "StatusCode": 201 }, { - "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\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Connection": [ - "close" - ], - "Date": [ - "Mon, 27 Mar 2017 18:10:02 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "bfeccbbd-4602-4565-963d-7e8214667ff2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" - ], - "x-ms-correlation-request-id": [ - "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", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/242a8e54-76f5-49ae-aee9-63b047daee2d0?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzI0MmE4ZTU0LTc2ZjUtNDlhZS1hZWU5LTYzYjA0N2RhZWUyZDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -751,7 +700,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:10:32 GMT" + "Mon, 24 Jul 2017 23:09:14 GMT" ], "Pragma": [ "no-cache" @@ -763,7 +712,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "22ca7368-c518-460f-a5e5-8a208658dde1" + "05229b46-f3d5-4a07-973f-bb1191dd9a15" ], "X-Content-Type-Options": [ "nosniff" @@ -775,13 +724,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14991" ], "x-ms-correlation-request-id": [ - "5473382c-2bcd-4501-9c54-cfbaa40ec57d" + "2366b852-95d7-41bf-9d03-bd4e0f20005f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181033Z:5473382c-2bcd-4501-9c54-cfbaa40ec57d" + "WESTUS:20170724T230914Z:2366b852-95d7-41bf-9d03-bd4e0f20005f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -790,8 +739,8 @@ "StatusCode": 200 }, { - "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt282?appendMode=autocreate&op=CONCURRENTAPPEND&api-version=2016-11-01", - "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQyODI/YXBwZW5kTW9kZT1hdXRvY3JlYXRlJm9wPUNPTkNVUlJFTlRBUFBFTkQmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt4656?appendMode=autocreate&op=CONCURRENTAPPEND&api-version=2016-11-01", + "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ0NjU2P2FwcGVuZE1vZGU9YXV0b2NyZWF0ZSZvcD1DT05DVVJSRU5UQVBQRU5EJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "POST", "RequestBody": "More test contents, that were appended!", "RequestHeaders": { @@ -799,7 +748,7 @@ "application/octet-stream" ], "x-ms-client-request-id": [ - "d93dbcec-5e00-481c-a952-77693d70ab7a" + "61ab33a9-1c5a-4341-9266-f6fd757335da" ], "Transfer-Encoding": [ "chunked" @@ -808,7 +757,8 @@ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "\"Operation succeeded.\"", @@ -826,13 +776,13 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:10:35 GMT" + "Mon, 24 Jul 2017 23:09:20 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "73ebdaa9-1865-4ef9-9a83-e3b87fdaee7e" + "155e4746-598b-4544-8a8e-b44a3ca28b2c" ], "X-Content-Type-Options": [ "nosniff" @@ -844,19 +794,20 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt282?op=OPEN&read=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQyODI/b3A9T1BFTiZyZWFkPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt4656?read=true&op=OPEN&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ0NjU2P3JlYWQ9dHJ1ZSZvcD1PUEVOJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a53bae95-1a05-43b1-b482-814536f3a663" + "5dd49817-ae85-4347-a328-f236eab6ff4f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "More test contents, that were appended!", @@ -871,7 +822,7 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:10:35 GMT" + "Mon, 24 Jul 2017 23:09:21 GMT" ], "Pragma": [ "no-cache" @@ -880,10 +831,10 @@ "chunked" ], "x-ms-request-id": [ - "1129fc19-1005-42be-8163-62b49797a0d6" + "c5e7c49c-b518-412e-a318-7dbc4e89682e" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -898,22 +849,23 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt282?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQyODI/b3A9R0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt4656?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ0NjU2P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "38ffb657-629b-4484-93bc-f5cb117329b5" + "8f36f97a-ad31-4eec-a94c-0517d341c5d1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 39,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1500937760305,\r\n \"modificationTime\": 1500937760352,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "305" @@ -928,16 +880,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:10:35 GMT" + "Mon, 24 Jul 2017 23:09:21 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "34be682a-f2b6-46a9-8b59-a1e0e4a662d2" + "d10d220a-753c-4bf2-97e9-fa30a620f855" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -954,15 +906,15 @@ ], "Names": { ".ctor": [ - "datalakerg16772", - "testdatalake12391", - "testadlfs18233" + "datalakerg11275", + "testdatalake11224", + "testadlfs15371" ], "DataLakeStoreFileSystemConcurrentAppendCreateFile": [ - "SDKTestFolder01/SDKTestFile01.txt282" + "SDKTestFolder01/SDKTestFile01.txt4656" ] }, "Variables": { - "SubscriptionId": "53d9063d-87ae-4ea8-be90-3686c3b8669f" + "SubscriptionId": "04319d6d-4a66-4701-bb2f-e7dbbd9ae4db" } } \ No newline at end of file diff --git a/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemConcurrentAppendToFile.json b/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemConcurrentAppendToFile.json index e8f49bce154b..99fd247b936b 100644 --- a/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemConcurrentAppendToFile.json +++ b/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemConcurrentAppendToFile.json @@ -1,22 +1,23 @@ { "Entries": [ { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a65cbef3-6688-458f-a2af-8c7478ffe5f7" + "9a5fccdb-0291-478f-9b03-9d867a1e5e57" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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" @@ -28,7 +29,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:04:36 GMT" + "Mon, 24 Jul 2017 22:42:42 GMT" ], "Pragma": [ "no-cache" @@ -43,13 +44,13 @@ "1199" ], "x-ms-request-id": [ - "1c1ee1e0-e10a-4f46-9b33-1ebcf33b3017" + "159b99d2-02ac-48e6-9caf-4463473a49d4" ], "x-ms-correlation-request-id": [ - "1c1ee1e0-e10a-4f46-9b33-1ebcf33b3017" + "159b99d2-02ac-48e6-9caf-4463473a49d4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T180436Z:1c1ee1e0-e10a-4f46-9b33-1ebcf33b3017" + "WESTUS2:20170724T224243Z:159b99d2-02ac-48e6-9caf-4463473a49d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -58,22 +59,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "add16008-abfd-4a7d-a3c9-02c3b783d29a" + "d9bc7407-121a-4303-98ad-5cc3d7a18539" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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" @@ -85,7 +87,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:04:36 GMT" + "Mon, 24 Jul 2017 22:42:42 GMT" ], "Pragma": [ "no-cache" @@ -94,16 +96,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14988" ], "x-ms-request-id": [ - "f791a087-3a16-40fc-91ae-628d1de3db75" + "84efece2-958b-4332-9b26-a0fc9c7e69d0" ], "x-ms-correlation-request-id": [ - "f791a087-3a16-40fc-91ae-628d1de3db75" + "84efece2-958b-4332-9b26-a0fc9c7e69d0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T180436Z:f791a087-3a16-40fc-91ae-628d1de3db75" + "WESTUS2:20170724T224243Z:84efece2-958b-4332-9b26-a0fc9c7e69d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -112,22 +114,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "26901827-6753-4d7a-95fe-8dce60cd142e" + "ecebefb8-90ee-400a-b0db-ac245a17551c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/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 \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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 \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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,7 +142,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:04:36 GMT" + "Mon, 24 Jul 2017 22:42:43 GMT" ], "Pragma": [ "no-cache" @@ -154,13 +157,13 @@ "1198" ], "x-ms-request-id": [ - "acc56a40-77f5-48e8-895e-91c345a02c33" + "65402801-fd97-4a70-abb7-5a225e072a64" ], "x-ms-correlation-request-id": [ - "acc56a40-77f5-48e8-895e-91c345a02c33" + "65402801-fd97-4a70-abb7-5a225e072a64" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T180437Z:acc56a40-77f5-48e8-895e-91c345a02c33" + "WESTUS2:20170724T224244Z:65402801-fd97-4a70-abb7-5a225e072a64" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -169,22 +172,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9e936890-c022-406e-b368-a1b622d497be" + "17cf2cc0-253a-46f9-ac07-9ff94220848a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/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 \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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 \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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" @@ -196,7 +200,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:04:36 GMT" + "Mon, 24 Jul 2017 22:42:43 GMT" ], "Pragma": [ "no-cache" @@ -205,16 +209,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14987" ], "x-ms-request-id": [ - "60aae6af-069d-42cc-9fa9-ac4358496785" + "a18657c5-44d4-4d62-936b-fe3e5f0ee849" ], "x-ms-correlation-request-id": [ - "60aae6af-069d-42cc-9fa9-ac4358496785" + "a18657c5-44d4-4d62-936b-fe3e5f0ee849" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T180437Z:60aae6af-069d-42cc-9fa9-ac4358496785" + "WESTUS2:20170724T224244Z:a18657c5-44d4-4d62-936b-fe3e5f0ee849" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -223,22 +227,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17573?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzU3Mz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg16374?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNjM3ND9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "964e240c-7f0b-4836-a956-268652945351" + "db72a13e-3ea8-472b-9193-213b5fcb1505" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg17573' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg16374' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -253,7 +258,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:04:37 GMT" + "Mon, 24 Jul 2017 22:42:43 GMT" ], "Pragma": [ "no-cache" @@ -262,16 +267,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14986" ], "x-ms-request-id": [ - "e5464ae9-f7da-40c1-83e6-cc52a9411efb" + "cd537498-a3e5-4907-877d-96948bd5fc3c" ], "x-ms-correlation-request-id": [ - "e5464ae9-f7da-40c1-83e6-cc52a9411efb" + "cd537498-a3e5-4907-877d-96948bd5fc3c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T180437Z:e5464ae9-f7da-40c1-83e6-cc52a9411efb" + "WESTUS2:20170724T224244Z:cd537498-a3e5-4907-877d-96948bd5fc3c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -280,22 +285,23 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17573?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzU3Mz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg16374?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNjM3ND9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c0f22498-ecae-4e27-b940-42f3d504f79a" + "966a1517-42de-4543-8f99-562160b2ddc5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg16374\",\r\n \"name\": \"datalakerg16374\",\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 +313,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:04:37 GMT" + "Mon, 24 Jul 2017 22:42:45 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +322,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14985" ], "x-ms-request-id": [ - "7f397681-4ea5-489f-8600-d7419ed39a3d" + "3fc8c241-aab9-473a-9b66-6ae18db2257f" ], "x-ms-correlation-request-id": [ - "7f397681-4ea5-489f-8600-d7419ed39a3d" + "3fc8c241-aab9-473a-9b66-6ae18db2257f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T180438Z:7f397681-4ea5-489f-8600-d7419ed39a3d" + "WESTUS2:20170724T224245Z:3fc8c241-aab9-473a-9b66-6ae18db2257f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +340,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17573?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzU3Mz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg16374?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNjM3ND9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,16 +352,17 @@ "31" ], "x-ms-client-request-id": [ - "5c4fef0a-d705-4b30-835b-b7cb10c5afaa" + "b6864d31-40ac-41c8-942c-50defdebf6a1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg16374\",\r\n \"name\": \"datalakerg16374\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -370,7 +377,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:04:37 GMT" + "Mon, 24 Jul 2017 22:42:45 GMT" ], "Pragma": [ "no-cache" @@ -379,13 +386,13 @@ "1197" ], "x-ms-request-id": [ - "5d1ce17a-c2fc-41db-9ceb-cb3c471e210a" + "c2a124c1-4142-4fc8-b580-6907d2894dc7" ], "x-ms-correlation-request-id": [ - "5d1ce17a-c2fc-41db-9ceb-cb3c471e210a" + "c2a124c1-4142-4fc8-b580-6907d2894dc7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T180438Z:5d1ce17a-c2fc-41db-9ceb-cb3c471e210a" + "WESTUS2:20170724T224245Z:c2a124c1-4142-4fc8-b580-6907d2894dc7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -394,22 +401,23 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17573/providers/Microsoft.DataLakeStore/accounts/testadlfs17707?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzU3My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc3MDc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg16374/providers/Microsoft.DataLakeStore/accounts/testadlfs12712?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjM3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTI3MTI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0e2453d2-4820-41dc-b651-2f3c0c98c7d2" + "018e2495-3dae-4e25-b790-c34a68d4749f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs12712' under resource group 'datalakerg16374' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "166" @@ -424,7 +432,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:04:37 GMT" + "Mon, 24 Jul 2017 22:42:45 GMT" ], "Pragma": [ "no-cache" @@ -433,13 +441,13 @@ "gateway" ], "x-ms-request-id": [ - "359dc8d2-4d8d-46b3-be34-c0b08bdaaacd" + "8701ca2e-29c1-4fb3-9068-c30ec0bbc7bb" ], "x-ms-correlation-request-id": [ - "359dc8d2-4d8d-46b3-be34-c0b08bdaaacd" + "8701ca2e-29c1-4fb3-9068-c30ec0bbc7bb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T180438Z:359dc8d2-4d8d-46b3-be34-c0b08bdaaacd" + "WESTUS2:20170724T224246Z:8701ca2e-29c1-4fb3-9068-c30ec0bbc7bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -448,16 +456,17 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17573/providers/Microsoft.DataLakeStore/accounts/testadlfs17707?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzU3My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc3MDc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg16374/providers/Microsoft.DataLakeStore/accounts/testadlfs12712?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjM3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTI3MTI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"testadlfs12712.azuredatalakestore.net\",\r\n \"accountId\": \"b97317ee-c2d2-4ee1-8b83-6e098bb5d529\",\r\n \"creationTime\": \"2017-07-24T22:42:51.4003044Z\",\r\n \"lastModifiedTime\": \"2017-07-24T22:42:51.4003044Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg16374/providers/Microsoft.DataLakeStore/accounts/testadlfs12712\",\r\n \"name\": \"testadlfs12712\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -472,7 +481,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:05:41 GMT" + "Mon, 24 Jul 2017 22:43:19 GMT" ], "Pragma": [ "no-cache" @@ -484,7 +493,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "76eb1877-c2e7-4b8c-82b7-e29110eb191a" + "32732292-dcde-4df8-9ca6-186216a791b7" ], "X-Content-Type-Options": [ "nosniff" @@ -496,13 +505,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14996" ], "x-ms-correlation-request-id": [ - "e68154e3-94f4-40a4-8027-a9317e81dc18" + "aa072925-7976-4dba-be2e-1f677d7fe6cc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T180542Z:e68154e3-94f4-40a4-8027-a9317e81dc18" + "WESTUS2:20170724T224320Z:aa072925-7976-4dba-be2e-1f677d7fe6cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -511,22 +520,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17573/providers/Microsoft.DataLakeStore/accounts/testadlfs17707?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzU3My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc3MDc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg16374/providers/Microsoft.DataLakeStore/accounts/testadlfs12712?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjM3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTI3MTI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "145f181f-14a4-49f9-a63a-5373dd43e582" + "6b555c6b-a378-4cfd-a607-bb73af370f5b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"testadlfs12712.azuredatalakestore.net\",\r\n \"accountId\": \"b97317ee-c2d2-4ee1-8b83-6e098bb5d529\",\r\n \"creationTime\": \"2017-07-24T22:42:51.4003044Z\",\r\n \"lastModifiedTime\": \"2017-07-24T22:42:51.4003044Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg16374/providers/Microsoft.DataLakeStore/accounts/testadlfs12712\",\r\n \"name\": \"testadlfs12712\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -541,7 +551,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:05:41 GMT" + "Mon, 24 Jul 2017 22:43:20 GMT" ], "Pragma": [ "no-cache" @@ -553,7 +563,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "aa43fbe7-b857-4ffb-85ea-bf50ea05aa48" + "e03688c0-64d6-466b-9345-b79732af843b" ], "X-Content-Type-Options": [ "nosniff" @@ -565,13 +575,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14992" ], "x-ms-correlation-request-id": [ - "72166533-593f-4619-b2f4-a9a73a282ca1" + "3fd6f5d4-25df-414b-8274-521fc4641797" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T180542Z:72166533-593f-4619-b2f4-a9a73a282ca1" + "WESTUS2:20170724T224320Z:3fd6f5d4-25df-414b-8274-521fc4641797" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -580,8 +590,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17573/providers/Microsoft.DataLakeStore/accounts/testadlfs17707?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzU3My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc3MDc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg16374/providers/Microsoft.DataLakeStore/accounts/testadlfs12712?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjM3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTI3MTI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -592,16 +602,17 @@ "31" ], "x-ms-client-request-id": [ - "a18ff6bd-76db-4f34-b371-a640b987b763" + "0c927f0f-3f59-474a-ace2-a53cb3914386" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"b97317ee-c2d2-4ee1-8b83-6e098bb5d529\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg16374/providers/Microsoft.DataLakeStore/accounts/testadlfs12712\",\r\n \"name\": \"testadlfs12712\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "420" @@ -619,13 +630,13 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:04:39 GMT" + "Mon, 24 Jul 2017 22:42:47 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17573/providers/Microsoft.DataLakeStore/accounts/testadlfs17707/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg16374/providers/Microsoft.DataLakeStore/accounts/testadlfs12712/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -634,10 +645,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "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" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/b97317ee-c2d2-4ee1-8b83-6e098bb5d5290?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "84ad99af-5ef7-4ef2-aa79-0ad4cb1c9991" + "6e24f28e-c39e-47cc-968d-9951130023f9" ], "X-Content-Type-Options": [ "nosniff" @@ -649,13 +660,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-correlation-request-id": [ - "8f2ee946-8181-4d0f-b1d7-e3ab6c23e13f" + "0a287a0f-33a1-4f19-a7b2-214bd650bc12" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T180440Z:8f2ee946-8181-4d0f-b1d7-e3ab6c23e13f" + "WESTUS2:20170724T224248Z:0a287a0f-33a1-4f19-a7b2-214bd650bc12" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -664,76 +675,14 @@ "StatusCode": 201 }, { - "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", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/b97317ee-c2d2-4ee1-8b83-6e098bb5d5290?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2I5NzMxN2VlLWMyZDItNGVlMS04YjgzLTZlMDk4YmI1ZDUyOTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -751,7 +700,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:05:40 GMT" + "Mon, 24 Jul 2017 22:43:19 GMT" ], "Pragma": [ "no-cache" @@ -763,7 +712,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "4f82b938-5255-4886-a837-e0e36c29dd5d" + "bbd391c0-e4d8-4dae-ab35-f1d7f3d261b4" ], "X-Content-Type-Options": [ "nosniff" @@ -775,13 +724,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14988" ], "x-ms-correlation-request-id": [ - "a17cd4a2-1b9b-4493-9e98-1e33d23ed232" + "214232f7-ba3b-419a-8a6e-d9855e0b724f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T180541Z:a17cd4a2-1b9b-4493-9e98-1e33d23ed232" + "WESTUS2:20170724T224319Z:214232f7-ba3b-419a-8a6e-d9855e0b724f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -790,8 +739,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt4282?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ0MjgyP3N5bmNGbGFnPURBVEEmb3A9Q1JFQVRFJndyaXRlPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt5410?syncFlag=DATA&write=true&op=CREATE&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ1NDEwP3N5bmNGbGFnPURBVEEmd3JpdGU9dHJ1ZSZvcD1DUkVBVEUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { @@ -802,13 +751,14 @@ "0" ], "x-ms-client-request-id": [ - "f07fc03e-4633-4e76-85ac-f7eb63fbc1b6" + "99140350-54d7-4e69-b923-4f2b22b42747" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "", @@ -823,22 +773,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:05:44 GMT" + "Mon, 24 Jul 2017 22:43:24 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs17707.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt4282?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs12712.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt5410?syncFlag=DATA&write=true&op=CREATE&api-version=2016-11-01" ], "x-ms-request-id": [ - "8c6eb0cb-5a68-4649-921e-b76957f93467" + "542b2011-f55b-42d5-b156-5f717eb02563" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -853,22 +803,23 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt4282?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ0MjgyP29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt5410?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ1NDEwP29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1ce252ad-36f6-4d5d-b844-63f18ced95ba" + "6a55748b-8267-4872-a8ba-9ada4e323b66" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1500936204683,\r\n \"modificationTime\": 1500936204683,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "304" @@ -883,16 +834,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:05:44 GMT" + "Mon, 24 Jul 2017 22:43:24 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "49ce7ef9-21b9-41ff-b330-a3d4715bf5c7" + "ed700971-6ec1-41f6-9778-95c22f3378e3" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -907,22 +858,23 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt4282?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ0MjgyP29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt5410?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ1NDEwP29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f1942190-6484-4703-ad71-8e9637d770a0" + "ae660267-cabd-45fc-b99c-2021b9be8dc9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 39,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1500936204683,\r\n \"modificationTime\": 1500936205052,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "305" @@ -937,16 +889,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:05:45 GMT" + "Mon, 24 Jul 2017 22:43:26 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "f6c79b0d-5889-494c-bb9e-ac2f9f905a56" + "f63f77b6-0082-4aeb-9a8c-fec30b05292d" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -961,8 +913,8 @@ "StatusCode": 200 }, { - "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt4282?op=CONCURRENTAPPEND&api-version=2016-11-01", - "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ0MjgyP29wPUNPTkNVUlJFTlRBUFBFTkQmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt5410?op=CONCURRENTAPPEND&api-version=2016-11-01", + "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ1NDEwP29wPUNPTkNVUlJFTlRBUFBFTkQmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "POST", "RequestBody": "More test contents, that were appended!", "RequestHeaders": { @@ -970,7 +922,7 @@ "application/octet-stream" ], "x-ms-client-request-id": [ - "1ae14adb-481f-4978-a62a-dbe6fda2cc1e" + "7168bb5a-73db-432b-92ed-db01a6146aaf" ], "Transfer-Encoding": [ "chunked" @@ -979,7 +931,8 @@ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "\"Operation succeeded.\"", @@ -997,13 +950,13 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:05:45 GMT" + "Mon, 24 Jul 2017 22:43:24 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "4716c180-c924-473e-acf0-cc2df9a0dfb6" + "7af82ec0-198d-4103-9486-b45a11ae6cf4" ], "X-Content-Type-Options": [ "nosniff" @@ -1015,19 +968,20 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt4282?op=OPEN&read=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ0MjgyP29wPU9QRU4mcmVhZD10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt5410?read=true&op=OPEN&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ1NDEwP3JlYWQ9dHJ1ZSZvcD1PUEVOJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0d486127-4c7d-4d27-ac6c-151d42136cc1" + "e8c51caf-86df-432b-a2ae-6886087d1024" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "More test contents, that were appended!", @@ -1042,7 +996,7 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:05:45 GMT" + "Mon, 24 Jul 2017 22:43:25 GMT" ], "Pragma": [ "no-cache" @@ -1051,10 +1005,10 @@ "chunked" ], "x-ms-request-id": [ - "02661fe5-d774-48df-a7ce-7e442214813e" + "62ef3cba-7a6c-4ecf-8a0b-90ae0634ab25" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -1071,15 +1025,15 @@ ], "Names": { ".ctor": [ - "datalakerg17573", - "testdatalake18488", - "testadlfs17707" + "datalakerg16374", + "testdatalake15808", + "testadlfs12712" ], "CreateFile": [ - "SDKTestFolder01/SDKTestFile01.txt4282" + "SDKTestFolder01/SDKTestFile01.txt5410" ] }, "Variables": { - "SubscriptionId": "53d9063d-87ae-4ea8-be90-3686c3b8669f" + "SubscriptionId": "04319d6d-4a66-4701-bb2f-e7dbbd9ae4db" } } \ No newline at end of file diff --git a/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemDeleteFile.json b/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemDeleteFile.json index 93457f0928b9..56b4d68a3021 100644 --- a/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemDeleteFile.json +++ b/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemDeleteFile.json @@ -1,22 +1,23 @@ { "Entries": [ { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "06be8185-4095-4190-9e56-96c2357e405d" + "7fed9b90-c9da-487e-9c81-abedff3fb0d7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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" @@ -28,7 +29,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:24:28 GMT" + "Mon, 24 Jul 2017 23:00:32 GMT" ], "Pragma": [ "no-cache" @@ -40,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1192" ], "x-ms-request-id": [ - "082d5b3e-ed4d-4955-9ce5-be66adabcb59" + "c7eadf3c-5a35-4d84-ab96-9ef74904e39e" ], "x-ms-correlation-request-id": [ - "082d5b3e-ed4d-4955-9ce5-be66adabcb59" + "c7eadf3c-5a35-4d84-ab96-9ef74904e39e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T182428Z:082d5b3e-ed4d-4955-9ce5-be66adabcb59" + "WESTUS2:20170724T230032Z:c7eadf3c-5a35-4d84-ab96-9ef74904e39e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -58,22 +59,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2c7619f4-4aea-4fff-9bd0-22c743451f9b" + "fcb3165d-1707-475c-94ec-0ab6e2e2f941" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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" @@ -85,7 +87,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:24:28 GMT" + "Mon, 24 Jul 2017 23:00:32 GMT" ], "Pragma": [ "no-cache" @@ -94,16 +96,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14866" ], "x-ms-request-id": [ - "01197303-e2ed-4e0a-a399-21780f6d17b3" + "8c370ff0-f19a-461e-b9d6-2c84d7c0e333" ], "x-ms-correlation-request-id": [ - "01197303-e2ed-4e0a-a399-21780f6d17b3" + "8c370ff0-f19a-461e-b9d6-2c84d7c0e333" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T182428Z:01197303-e2ed-4e0a-a399-21780f6d17b3" + "WESTUS2:20170724T230033Z:8c370ff0-f19a-461e-b9d6-2c84d7c0e333" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -112,22 +114,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "18a78014-0347-4474-a556-abcd13c7413b" + "7655b8c7-1b63-428b-bdf0-261aca31b964" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/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 \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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 \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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,7 +142,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:24:29 GMT" + "Mon, 24 Jul 2017 23:00:33 GMT" ], "Pragma": [ "no-cache" @@ -151,16 +154,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1191" ], "x-ms-request-id": [ - "ceebe63a-35ae-460e-9aa4-fc08f7bf1ffc" + "d7bc5b12-9b58-4cc5-aba1-a12df1b568b3" ], "x-ms-correlation-request-id": [ - "ceebe63a-35ae-460e-9aa4-fc08f7bf1ffc" + "d7bc5b12-9b58-4cc5-aba1-a12df1b568b3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T182429Z:ceebe63a-35ae-460e-9aa4-fc08f7bf1ffc" + "WESTUS2:20170724T230034Z:d7bc5b12-9b58-4cc5-aba1-a12df1b568b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -169,22 +172,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "758c1b55-f127-4981-a661-671409c8a494" + "8940a239-cdd8-4ced-8ac3-14dca63d94fd" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/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 \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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 \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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" @@ -196,7 +200,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:24:29 GMT" + "Mon, 24 Jul 2017 23:00:33 GMT" ], "Pragma": [ "no-cache" @@ -205,16 +209,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14864" ], "x-ms-request-id": [ - "179e1fc1-1f12-4fcc-a3f3-5d44d5f1b9ee" + "001aba21-5d6f-4d15-ad2f-432a1bbe6f60" ], "x-ms-correlation-request-id": [ - "179e1fc1-1f12-4fcc-a3f3-5d44d5f1b9ee" + "001aba21-5d6f-4d15-ad2f-432a1bbe6f60" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T182429Z:179e1fc1-1f12-4fcc-a3f3-5d44d5f1b9ee" + "WESTUS2:20170724T230034Z:001aba21-5d6f-4d15-ad2f-432a1bbe6f60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -223,25 +227,26 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg12974?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMjk3ND9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg1924?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTI0P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b469cb7b-0eec-4766-8a89-96112aabdd85" + "7cc7f6e1-2c1d-410d-ae9b-a5d798f05eaa" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg12974' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg1924' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "107" + "106" ], "Content-Type": [ "application/json; charset=utf-8" @@ -253,7 +258,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:24:29 GMT" + "Mon, 24 Jul 2017 23:00:33 GMT" ], "Pragma": [ "no-cache" @@ -262,16 +267,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14863" ], "x-ms-request-id": [ - "393440f2-793f-4a99-a313-fd49ee4cda7a" + "1c0c4095-53e7-4d62-9b3a-e6ebb1a9376a" ], "x-ms-correlation-request-id": [ - "393440f2-793f-4a99-a313-fd49ee4cda7a" + "1c0c4095-53e7-4d62-9b3a-e6ebb1a9376a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T182429Z:393440f2-793f-4a99-a313-fd49ee4cda7a" + "WESTUS2:20170724T230034Z:1c0c4095-53e7-4d62-9b3a-e6ebb1a9376a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -280,22 +285,23 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg12974?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMjk3ND9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg1924?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTI0P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "276e819f-aac2-4d2f-a2d3-723c5b3ce9a2" + "397b8477-811c-4a89-90e7-889fa297cf21" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg1924\",\r\n \"name\": \"datalakerg1924\",\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 +313,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:24:30 GMT" + "Mon, 24 Jul 2017 23:00:35 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +322,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14862" ], "x-ms-request-id": [ - "f9de781c-1255-4adc-a4d2-089da4a99589" + "12d17cf3-9aaf-49ed-86af-1485af09cdfd" ], "x-ms-correlation-request-id": [ - "f9de781c-1255-4adc-a4d2-089da4a99589" + "12d17cf3-9aaf-49ed-86af-1485af09cdfd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T182430Z:f9de781c-1255-4adc-a4d2-089da4a99589" + "WESTUS2:20170724T230035Z:12d17cf3-9aaf-49ed-86af-1485af09cdfd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +340,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg12974?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMjk3ND9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg1924?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTI0P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,19 +352,20 @@ "31" ], "x-ms-client-request-id": [ - "1b9c8956-beb2-4135-b9e3-d2bbf69c064f" + "52697c76-6e16-4031-b565-099e30d82e16" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg1924\",\r\n \"name\": \"datalakerg1924\",\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" @@ -370,22 +377,22 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:24:30 GMT" + "Mon, 24 Jul 2017 23:00:35 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1190" ], "x-ms-request-id": [ - "65b0fef5-1756-46b0-8e90-53c8ed903351" + "b8a5ba9d-48ac-40ae-8c75-9496c5b28bda" ], "x-ms-correlation-request-id": [ - "65b0fef5-1756-46b0-8e90-53c8ed903351" + "b8a5ba9d-48ac-40ae-8c75-9496c5b28bda" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T182430Z:65b0fef5-1756-46b0-8e90-53c8ed903351" + "WESTUS2:20170724T230035Z:b8a5ba9d-48ac-40ae-8c75-9496c5b28bda" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -394,25 +401,26 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12974/providers/Microsoft.DataLakeStore/accounts/testadlfs17767?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc3Njc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg1924/providers/Microsoft.DataLakeStore/accounts/testadlfs17821?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxNzgyMT9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ff306566-9046-4547-9670-f2db4c093e00" + "be52e82b-3be0-417d-8bcd-9742c82ba53c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs17821' under resource group 'datalakerg1924' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "166" + "165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -424,7 +432,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:24:30 GMT" + "Mon, 24 Jul 2017 23:00:35 GMT" ], "Pragma": [ "no-cache" @@ -433,13 +441,13 @@ "gateway" ], "x-ms-request-id": [ - "b8301618-b35d-4df0-9432-4da92489cd19" + "a920eb8b-4ba4-4107-ba98-d4ab54852870" ], "x-ms-correlation-request-id": [ - "b8301618-b35d-4df0-9432-4da92489cd19" + "a920eb8b-4ba4-4107-ba98-d4ab54852870" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T182431Z:b8301618-b35d-4df0-9432-4da92489cd19" + "WESTUS2:20170724T230036Z:a920eb8b-4ba4-4107-ba98-d4ab54852870" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -448,16 +456,17 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12974/providers/Microsoft.DataLakeStore/accounts/testadlfs17767?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc3Njc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg1924/providers/Microsoft.DataLakeStore/accounts/testadlfs17821?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxNzgyMT9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"testadlfs17821.azuredatalakestore.net\",\r\n \"accountId\": \"7b751ba2-9808-4fb4-9bd9-d2a8e8e0a35b\",\r\n \"creationTime\": \"2017-07-24T23:00:40.6236363Z\",\r\n \"lastModifiedTime\": \"2017-07-24T23:00:40.6236363Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg1924/providers/Microsoft.DataLakeStore/accounts/testadlfs17821\",\r\n \"name\": \"testadlfs17821\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -472,7 +481,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:25:03 GMT" + "Mon, 24 Jul 2017 23:01:08 GMT" ], "Pragma": [ "no-cache" @@ -484,7 +493,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "201e7606-6416-4eca-885e-e93bd13a6b24" + "42236d22-42ac-44f4-aa4e-2cde68a7d734" ], "X-Content-Type-Options": [ "nosniff" @@ -496,13 +505,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14985" ], "x-ms-correlation-request-id": [ - "e683d00f-bd58-4e4a-922a-828dd67caed5" + "3ce231c4-0af1-4583-94eb-ab5ddc0f2e23" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T182503Z:e683d00f-bd58-4e4a-922a-828dd67caed5" + "WESTUS2:20170724T230109Z:3ce231c4-0af1-4583-94eb-ab5ddc0f2e23" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -511,22 +520,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12974/providers/Microsoft.DataLakeStore/accounts/testadlfs17767?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc3Njc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg1924/providers/Microsoft.DataLakeStore/accounts/testadlfs17821?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxNzgyMT9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "25bbb917-35ac-49aa-8e79-8f1a947e0899" + "6e80677d-f06d-4bbd-b08a-d167ec2aa269" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"testadlfs17821.azuredatalakestore.net\",\r\n \"accountId\": \"7b751ba2-9808-4fb4-9bd9-d2a8e8e0a35b\",\r\n \"creationTime\": \"2017-07-24T23:00:40.6236363Z\",\r\n \"lastModifiedTime\": \"2017-07-24T23:00:40.6236363Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg1924/providers/Microsoft.DataLakeStore/accounts/testadlfs17821\",\r\n \"name\": \"testadlfs17821\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -541,7 +551,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:25:03 GMT" + "Mon, 24 Jul 2017 23:01:09 GMT" ], "Pragma": [ "no-cache" @@ -553,7 +563,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "798feaed-103d-4172-b98d-41539956ff47" + "39a1459d-1e6b-4982-a2f5-b1f08d97e93e" ], "X-Content-Type-Options": [ "nosniff" @@ -565,13 +575,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14979" ], "x-ms-correlation-request-id": [ - "1d7e35eb-3a5e-4276-90bc-e7f31ad75bf0" + "485b0434-a5e2-4e55-871e-327291ef097e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T182503Z:1d7e35eb-3a5e-4276-90bc-e7f31ad75bf0" + "WESTUS2:20170724T230110Z:485b0434-a5e2-4e55-871e-327291ef097e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -580,8 +590,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12974/providers/Microsoft.DataLakeStore/accounts/testadlfs17767?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc3Njc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg1924/providers/Microsoft.DataLakeStore/accounts/testadlfs17821?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxNzgyMT9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -592,19 +602,20 @@ "31" ], "x-ms-client-request-id": [ - "4f953a4b-82cd-4385-89bd-3071ec154ad5" + "93f14a37-03d3-4697-9bc3-31431ebda31e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"7b751ba2-9808-4fb4-9bd9-d2a8e8e0a35b\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg1924/providers/Microsoft.DataLakeStore/accounts/testadlfs17821\",\r\n \"name\": \"testadlfs17821\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "420" + "419" ], "Content-Type": [ "application/json" @@ -619,13 +630,13 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:24:31 GMT" + "Mon, 24 Jul 2017 23:00:37 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg12974/providers/Microsoft.DataLakeStore/accounts/testadlfs17767/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg1924/providers/Microsoft.DataLakeStore/accounts/testadlfs17821/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -634,10 +645,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "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" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/7b751ba2-9808-4fb4-9bd9-d2a8e8e0a35b0?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "38e2cef7-b32d-4da3-b586-c648cd98efea" + "3c158c1e-651e-4fd5-8a0d-104fd92ecf14" ], "X-Content-Type-Options": [ "nosniff" @@ -652,10 +663,10 @@ "1197" ], "x-ms-correlation-request-id": [ - "dadc5cc4-0d88-4f1e-b380-61047f9e4ffe" + "1f72ae6d-5aae-4424-8c66-bd04726084ab" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T182432Z:dadc5cc4-0d88-4f1e-b380-61047f9e4ffe" + "WESTUS2:20170724T230038Z:1f72ae6d-5aae-4424-8c66-bd04726084ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -664,13 +675,14 @@ "StatusCode": 201 }, { - "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", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/7b751ba2-9808-4fb4-9bd9-d2a8e8e0a35b0?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzdiNzUxYmEyLTk4MDgtNGZiNC05YmQ5LWQyYThlOGUwYTM1YjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -688,7 +700,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:25:01 GMT" + "Mon, 24 Jul 2017 23:01:08 GMT" ], "Pragma": [ "no-cache" @@ -700,7 +712,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "babb3def-645e-4ce5-9bff-e956b426b61a" + "56ad65fe-cae0-4982-aa3a-8c2b783e2fc1" ], "X-Content-Type-Options": [ "nosniff" @@ -712,13 +724,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14976" ], "x-ms-correlation-request-id": [ - "e854d296-08d7-48ab-81ab-09d7bd5e52c9" + "38f8ff13-363a-4f1d-9a77-8ccd70f91dde" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T182502Z:e854d296-08d7-48ab-81ab-09d7bd5e52c9" + "WESTUS2:20170724T230108Z:38f8ff13-363a-4f1d-9a77-8ccd70f91dde" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -727,8 +739,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt174?op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQxNzQ/b3A9Q1JFQVRFJndyaXRlPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt6504?write=true&op=CREATE&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ2NTA0P3dyaXRlPXRydWUmb3A9Q1JFQVRFJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -739,13 +751,14 @@ "42" ], "x-ms-client-request-id": [ - "f00b540e-8e48-448f-bebe-ecc85d5bfc3d" + "a695f0be-84ab-4bac-a731-ce456c653944" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "", @@ -760,22 +773,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:25:04 GMT" + "Mon, 24 Jul 2017 23:01:13 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs17767.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt174?op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs17821.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt6504?write=true&op=CREATE&api-version=2016-11-01" ], "x-ms-request-id": [ - "ce4d5b30-48b5-48d7-8601-6d20faca7264" + "26b525cf-ccb4-4782-bce2-4d4c25877e36" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -790,22 +803,23 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt174?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQxNzQ/b3A9R0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt6504?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ2NTA0P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1c7f6dbd-94ae-42c4-ba61-00031775f040" + "8650e766-7f9e-473a-b105-d593bbb86897" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1500937273418,\r\n \"modificationTime\": 1500937273457,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "305" @@ -820,16 +834,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:25:04 GMT" + "Mon, 24 Jul 2017 23:01:13 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "a1a57898-af61-477f-9177-5afedc849b67" + "83c8c729-4ac1-4d7a-a294-a810eb39cebc" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -844,19 +858,20 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt174?recursive=false&op=DELETE&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQxNzQ/cmVjdXJzaXZlPWZhbHNlJm9wPURFTEVURSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt6504?recursive=false&op=DELETE&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ2NTA0P3JlY3Vyc2l2ZT1mYWxzZSZvcD1ERUxFVEUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d80cd98a-b5f3-47ef-a0fa-f2e3397a60fa" + "8157b32e-7102-4f96-9247-0585590d151a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "{\r\n \"boolean\": true\r\n}", @@ -874,16 +889,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:25:04 GMT" + "Mon, 24 Jul 2017 23:01:13 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "40f453b8-a3fd-4102-bf6c-59838733e103" + "c1a2dadb-9978-4338-b30b-a85dc4334a93" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -898,19 +913,20 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt174?recursive=false&op=DELETE&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQxNzQ/cmVjdXJzaXZlPWZhbHNlJm9wPURFTEVURSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt6504?recursive=false&op=DELETE&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ2NTA0P3JlY3Vyc2l2ZT1mYWxzZSZvcD1ERUxFVEUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d33f4fac-0125-44cb-9627-6af164fc973e" + "0a5c058f-1510-4190-aeec-2964808925b0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "{\r\n \"boolean\": false\r\n}", @@ -928,16 +944,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:25:04 GMT" + "Mon, 24 Jul 2017 23:01:14 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "b15d44d4-5b6e-44c1-aaf9-9ba7e99bb7e6" + "25a7a063-ab69-43a9-a6a3-391c3315755a" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x8309000A" @@ -954,15 +970,15 @@ ], "Names": { ".ctor": [ - "datalakerg12974", - "testdatalake15928", - "testadlfs17767" + "datalakerg1924", + "testdatalake15558", + "testadlfs17821" ], "CreateFile": [ - "SDKTestFolder01/SDKTestFile01.txt174" + "SDKTestFolder01/SDKTestFile01.txt6504" ] }, "Variables": { - "SubscriptionId": "53d9063d-87ae-4ea8-be90-3686c3b8669f" + "SubscriptionId": "04319d6d-4a66-4701-bb2f-e7dbbd9ae4db" } } \ No newline at end of file diff --git a/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemDeleteFolder.json b/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemDeleteFolder.json index 8a019317df26..d159af64bfa1 100644 --- a/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemDeleteFolder.json +++ b/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemDeleteFolder.json @@ -1,22 +1,23 @@ { "Entries": [ { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fdcebaf5-ef7d-4f7b-a31f-cffa4ed103ab" + "7ec91a35-e7bf-4130-914b-156c93c0e317" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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" @@ -28,7 +29,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:05:48 GMT" + "Mon, 24 Jul 2017 22:43:35 GMT" ], "Pragma": [ "no-cache" @@ -40,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "e00babd9-c7fe-4004-8939-b9e94df9a928" + "26475c81-8caf-4008-88da-1443438bda49" ], "x-ms-correlation-request-id": [ - "e00babd9-c7fe-4004-8939-b9e94df9a928" + "26475c81-8caf-4008-88da-1443438bda49" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T180548Z:e00babd9-c7fe-4004-8939-b9e94df9a928" + "WESTUS2:20170724T224335Z:26475c81-8caf-4008-88da-1443438bda49" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -58,22 +59,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7dcb9686-14b1-47b5-89dd-d1749fe5e5b1" + "d9179ed4-8815-4ceb-b7cf-281648b34dbe" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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" @@ -85,7 +87,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:05:48 GMT" + "Mon, 24 Jul 2017 22:43:35 GMT" ], "Pragma": [ "no-cache" @@ -94,16 +96,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14991" ], "x-ms-request-id": [ - "5250d54b-c679-44f3-8427-9f1e1ad9596a" + "1b8ee72a-59d3-445c-a582-5f968fbf4a31" ], "x-ms-correlation-request-id": [ - "5250d54b-c679-44f3-8427-9f1e1ad9596a" + "1b8ee72a-59d3-445c-a582-5f968fbf4a31" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T180548Z:5250d54b-c679-44f3-8427-9f1e1ad9596a" + "WESTUS2:20170724T224336Z:1b8ee72a-59d3-445c-a582-5f968fbf4a31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -112,22 +114,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "87bf9b19-c61d-467e-b9fe-d42be8ac3b45" + "a3a626e8-2f1c-4e6e-83f1-7be62bbd397d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/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 \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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 \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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,7 +142,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:05:48 GMT" + "Mon, 24 Jul 2017 22:43:36 GMT" ], "Pragma": [ "no-cache" @@ -151,16 +154,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-request-id": [ - "a0f07205-cd57-4937-bfe4-f398338f434d" + "70347cb2-9deb-434b-8a79-7f9ef8e00943" ], "x-ms-correlation-request-id": [ - "a0f07205-cd57-4937-bfe4-f398338f434d" + "70347cb2-9deb-434b-8a79-7f9ef8e00943" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T180549Z:a0f07205-cd57-4937-bfe4-f398338f434d" + "WESTUS2:20170724T224336Z:70347cb2-9deb-434b-8a79-7f9ef8e00943" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -169,22 +172,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "05c3dd2c-6da1-445d-9647-9c9c6bd5e364" + "3dc6d964-d0c4-459a-8f22-11e1e33f6a19" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/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 \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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 \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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" @@ -196,7 +200,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:05:48 GMT" + "Mon, 24 Jul 2017 22:43:36 GMT" ], "Pragma": [ "no-cache" @@ -205,16 +209,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14990" ], "x-ms-request-id": [ - "7e854e12-0f27-4adb-a5ce-567dd5275584" + "69114b92-b6b3-4699-8cee-fa7784369e7d" ], "x-ms-correlation-request-id": [ - "7e854e12-0f27-4adb-a5ce-567dd5275584" + "69114b92-b6b3-4699-8cee-fa7784369e7d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T180549Z:7e854e12-0f27-4adb-a5ce-567dd5275584" + "WESTUS2:20170724T224337Z:69114b92-b6b3-4699-8cee-fa7784369e7d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -223,25 +227,26 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1538?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNTM4P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg16335?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNjMzNT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3d7cbc5d-2290-4a14-873f-da349b30dbee" + "3435f0ed-1aa9-408e-b67f-88c68d0b8fb8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg1538' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg16335' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "106" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -253,7 +258,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:05:48 GMT" + "Mon, 24 Jul 2017 22:43:36 GMT" ], "Pragma": [ "no-cache" @@ -262,16 +267,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14989" ], "x-ms-request-id": [ - "c0607a1f-7d22-4762-8bb0-6dca57af2adb" + "ee7d9a90-ba6f-419f-988b-857f2038ddf3" ], "x-ms-correlation-request-id": [ - "c0607a1f-7d22-4762-8bb0-6dca57af2adb" + "ee7d9a90-ba6f-419f-988b-857f2038ddf3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T180549Z:c0607a1f-7d22-4762-8bb0-6dca57af2adb" + "WESTUS2:20170724T224337Z:ee7d9a90-ba6f-419f-988b-857f2038ddf3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -280,22 +285,23 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1538?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNTM4P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg16335?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNjMzNT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5de01736-1d90-48a6-8468-83ccd666efb9" + "57ad2e03-2459-43b1-b9e8-fd54e2648517" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg16335\",\r\n \"name\": \"datalakerg16335\",\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 +313,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:05:49 GMT" + "Mon, 24 Jul 2017 22:43:37 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +322,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14988" ], "x-ms-request-id": [ - "d3bf6464-87b5-4105-8c23-f4fd938fc36c" + "716d55ef-8c47-4e75-a7fa-d8fe7ebcc2b3" ], "x-ms-correlation-request-id": [ - "d3bf6464-87b5-4105-8c23-f4fd938fc36c" + "716d55ef-8c47-4e75-a7fa-d8fe7ebcc2b3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T180550Z:d3bf6464-87b5-4105-8c23-f4fd938fc36c" + "WESTUS2:20170724T224337Z:716d55ef-8c47-4e75-a7fa-d8fe7ebcc2b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +340,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1538?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNTM4P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg16335?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNjMzNT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,19 +352,20 @@ "31" ], "x-ms-client-request-id": [ - "a67f3597-e349-47be-8483-9f36377cb4a7" + "5a10eeab-cee1-4b31-8530-a427b36ec70c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg16335\",\r\n \"name\": \"datalakerg16335\",\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" @@ -370,22 +377,22 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:05:49 GMT" + "Mon, 24 Jul 2017 22:43:37 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1196" ], "x-ms-request-id": [ - "37544070-1463-40d5-899e-133f6b2d5f45" + "eb28d3f4-65d4-4de6-9f73-1c5f63315513" ], "x-ms-correlation-request-id": [ - "37544070-1463-40d5-899e-133f6b2d5f45" + "eb28d3f4-65d4-4de6-9f73-1c5f63315513" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T180550Z:37544070-1463-40d5-899e-133f6b2d5f45" + "WESTUS2:20170724T224337Z:eb28d3f4-65d4-4de6-9f73-1c5f63315513" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -394,25 +401,26 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1538/providers/Microsoft.DataLakeStore/accounts/testadlfs1182?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxMTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg16335/providers/Microsoft.DataLakeStore/accounts/testadlfs1281?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTI4MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2e86a7be-929f-4d91-8ba3-3850e6de4629" + "809a3295-dca4-47bc-9faa-e28017c6db60" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs1281' under resource group 'datalakerg16335' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "164" + "165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -424,7 +432,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:05:50 GMT" + "Mon, 24 Jul 2017 22:43:37 GMT" ], "Pragma": [ "no-cache" @@ -433,13 +441,13 @@ "gateway" ], "x-ms-request-id": [ - "d09e7175-a35a-49ee-b76d-77cbf97ff0e5" + "e88f169d-200a-4642-96eb-f18b7f48dc2e" ], "x-ms-correlation-request-id": [ - "d09e7175-a35a-49ee-b76d-77cbf97ff0e5" + "e88f169d-200a-4642-96eb-f18b7f48dc2e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T180550Z:d09e7175-a35a-49ee-b76d-77cbf97ff0e5" + "WESTUS2:20170724T224338Z:e88f169d-200a-4642-96eb-f18b7f48dc2e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -448,16 +456,17 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1538/providers/Microsoft.DataLakeStore/accounts/testadlfs1182?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxMTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg16335/providers/Microsoft.DataLakeStore/accounts/testadlfs1281?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTI4MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"testadlfs1281.azuredatalakestore.net\",\r\n \"accountId\": \"78f21602-0aa5-4d07-b50e-f85c9ca01a2a\",\r\n \"creationTime\": \"2017-07-24T22:43:43.3112443Z\",\r\n \"lastModifiedTime\": \"2017-07-24T22:43:43.3112443Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg16335/providers/Microsoft.DataLakeStore/accounts/testadlfs1281\",\r\n \"name\": \"testadlfs1281\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -472,7 +481,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:06:22 GMT" + "Mon, 24 Jul 2017 22:44:10 GMT" ], "Pragma": [ "no-cache" @@ -484,7 +493,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "32f8e4d5-1995-40dd-833f-0a276881cbb8" + "22030aa8-2267-433c-9882-e80e9b4af34f" ], "X-Content-Type-Options": [ "nosniff" @@ -496,13 +505,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14986" ], "x-ms-correlation-request-id": [ - "f7382862-af22-46c1-a1ac-aa13217f9aa5" + "cbd2a0e4-55a6-41d8-8e5f-a79046101d40" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T180623Z:f7382862-af22-46c1-a1ac-aa13217f9aa5" + "WESTUS2:20170724T224411Z:cbd2a0e4-55a6-41d8-8e5f-a79046101d40" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -511,22 +520,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1538/providers/Microsoft.DataLakeStore/accounts/testadlfs1182?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxMTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg16335/providers/Microsoft.DataLakeStore/accounts/testadlfs1281?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTI4MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fc06f53a-010a-46a0-9a82-22ca9ebeccae" + "8593fa96-2e45-45aa-a2aa-82baf18de3f6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"testadlfs1281.azuredatalakestore.net\",\r\n \"accountId\": \"78f21602-0aa5-4d07-b50e-f85c9ca01a2a\",\r\n \"creationTime\": \"2017-07-24T22:43:43.3112443Z\",\r\n \"lastModifiedTime\": \"2017-07-24T22:43:43.3112443Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg16335/providers/Microsoft.DataLakeStore/accounts/testadlfs1281\",\r\n \"name\": \"testadlfs1281\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -541,7 +551,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:06:23 GMT" + "Mon, 24 Jul 2017 22:44:12 GMT" ], "Pragma": [ "no-cache" @@ -553,7 +563,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "40e6c828-63ef-4015-9c21-9dd995288f07" + "18e75b0a-1625-4c6f-9c10-9e8b11afccf0" ], "X-Content-Type-Options": [ "nosniff" @@ -565,13 +575,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14983" ], "x-ms-correlation-request-id": [ - "ff731458-f61d-40fb-98c6-879d846c77c7" + "b17ec312-529c-44bd-9359-9e4d61a0f58e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T180624Z:ff731458-f61d-40fb-98c6-879d846c77c7" + "WESTUS2:20170724T224412Z:b17ec312-529c-44bd-9359-9e4d61a0f58e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -580,8 +590,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1538/providers/Microsoft.DataLakeStore/accounts/testadlfs1182?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxMTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg16335/providers/Microsoft.DataLakeStore/accounts/testadlfs1281?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTI4MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -592,19 +602,20 @@ "31" ], "x-ms-client-request-id": [ - "d46b2504-7bae-4057-949e-07d0ddf31976" + "70f6500c-9d3f-41e2-9239-05f0f3facdf0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"78f21602-0aa5-4d07-b50e-f85c9ca01a2a\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg16335/providers/Microsoft.DataLakeStore/accounts/testadlfs1281\",\r\n \"name\": \"testadlfs1281\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "417" + "418" ], "Content-Type": [ "application/json" @@ -619,13 +630,13 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:05:52 GMT" + "Mon, 24 Jul 2017 22:43:39 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1538/providers/Microsoft.DataLakeStore/accounts/testadlfs1182/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg16335/providers/Microsoft.DataLakeStore/accounts/testadlfs1281/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -634,10 +645,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "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" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/78f21602-0aa5-4d07-b50e-f85c9ca01a2a0?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "b4f58a2c-1df8-461e-bcee-314051fc6077" + "f2232730-d255-47e2-a670-5f092496d752" ], "X-Content-Type-Options": [ "nosniff" @@ -652,10 +663,10 @@ "1198" ], "x-ms-correlation-request-id": [ - "bb0db832-2358-4f0b-b77b-81dbe8a21b0e" + "abca022a-2d7f-4f42-9f25-1be809416dd4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T180552Z:bb0db832-2358-4f0b-b77b-81dbe8a21b0e" + "WESTUS2:20170724T224340Z:abca022a-2d7f-4f42-9f25-1be809416dd4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -664,13 +675,14 @@ "StatusCode": 201 }, { - "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", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/78f21602-0aa5-4d07-b50e-f85c9ca01a2a0?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzc4ZjIxNjAyLTBhYTUtNGQwNy1iNTBlLWY4NWM5Y2EwMWEyYTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -688,7 +700,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:06:22 GMT" + "Mon, 24 Jul 2017 22:44:10 GMT" ], "Pragma": [ "no-cache" @@ -700,7 +712,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "562c2560-e11f-437a-986c-a1a4d9eaf893" + "be5c269a-64af-4abf-b093-bf6068d131ba" ], "X-Content-Type-Options": [ "nosniff" @@ -712,13 +724,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14981" ], "x-ms-correlation-request-id": [ - "1106f391-86de-4b51-a596-7d27b689f72f" + "19343104-4a6f-4ec6-89e0-86511fc230fb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T180623Z:1106f391-86de-4b51-a596-7d27b689f72f" + "WESTUS2:20170724T224411Z:19343104-4a6f-4ec6-89e0-86511fc230fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -727,19 +739,20 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019059?op=MKDIRS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTA1OT9vcD1NS0RJUlMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder014511?op=MKDIRS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNDUxMT9vcD1NS0RJUlMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "68cc2ae7-b300-4ee3-a6ff-ef9126920009" + "21291460-40cd-4c9c-a985-768f1b48ea5f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "{\r\n \"boolean\": true\r\n}", @@ -757,16 +770,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:06:27 GMT" + "Mon, 24 Jul 2017 22:44:15 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "256a4acf-d673-4c00-90c7-a0ae36d40800" + "e9313c55-1ad7-433d-adfe-4c9569843839" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -781,22 +794,23 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019059?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTA1OT9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder014511?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNDUxMT9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ee1bbd4c-27df-4e3a-abd7-b11eb236265c" + "b6d7a1d9-903a-4cdf-b930-3f70baf7b641" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"DIRECTORY\",\r\n \"blockSize\": 0,\r\n \"accessTime\": 1500936256347,\r\n \"modificationTime\": 1500936256347,\r\n \"replication\": 0,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "280" @@ -811,16 +825,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:06:27 GMT" + "Mon, 24 Jul 2017 22:44:16 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "05b0abd3-ee9a-44fc-9340-dc1c94976451" + "27d94864-94b6-45fc-848c-a3c89ebd2dd5" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -835,19 +849,20 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019059?recursive=true&op=DELETE&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTA1OT9yZWN1cnNpdmU9dHJ1ZSZvcD1ERUxFVEUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder014511?recursive=true&op=DELETE&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNDUxMT9yZWN1cnNpdmU9dHJ1ZSZvcD1ERUxFVEUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "03d858b5-9587-45eb-ad5f-f56c10c2c846" + "bea49a36-7d69-4d19-bb8d-1697188f9669" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "{\r\n \"boolean\": true\r\n}", @@ -865,16 +880,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:06:27 GMT" + "Mon, 24 Jul 2017 22:44:16 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "d2c427a1-c327-4f94-921a-265ed0dd6291" + "1092fec6-8e68-49d8-9d8d-f43c9b5e3870" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -889,19 +904,20 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019059?recursive=true&op=DELETE&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTA1OT9yZWN1cnNpdmU9dHJ1ZSZvcD1ERUxFVEUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder014511?recursive=true&op=DELETE&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNDUxMT9yZWN1cnNpdmU9dHJ1ZSZvcD1ERUxFVEUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "da83e665-1c89-422d-acbf-295728d27d01" + "94438c69-85ca-4313-91e1-3e019b86fb35" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "{\r\n \"boolean\": true\r\n}", @@ -919,16 +935,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:06:28 GMT" + "Mon, 24 Jul 2017 22:44:17 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "68673fd4-a6fc-4ffa-8d92-125e3601848d" + "cfa9e548-6134-45fc-ad5b-011b5acbb006" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -943,19 +959,20 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019059?recursive=true&op=DELETE&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTA1OT9yZWN1cnNpdmU9dHJ1ZSZvcD1ERUxFVEUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder014511?recursive=true&op=DELETE&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNDUxMT9yZWN1cnNpdmU9dHJ1ZSZvcD1ERUxFVEUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "391c5454-cb68-4fcb-b92f-c3e06012d69d" + "aaa5ebee-f3de-40a6-8e74-fae868b90b56" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "{\r\n \"boolean\": false\r\n}", @@ -973,16 +990,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:06:28 GMT" + "Mon, 24 Jul 2017 22:44:17 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "742e99b9-8630-4d60-a07a-968c5bdffb4a" + "dfbaeb42-ed7a-48da-b36f-9034256fd4c3" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x8309000A" @@ -997,19 +1014,20 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019059?recursive=false&op=DELETE&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTA1OT9yZWN1cnNpdmU9ZmFsc2Umb3A9REVMRVRFJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder014511?recursive=false&op=DELETE&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNDUxMT9yZWN1cnNpdmU9ZmFsc2Umb3A9REVMRVRFJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e41d502e-ec0b-44fc-a292-c621f36b1b47" + "2e6ac027-e141-4e25-bcf2-b7434c579f96" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "{\r\n \"boolean\": false\r\n}", @@ -1027,16 +1045,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:06:27 GMT" + "Mon, 24 Jul 2017 22:44:16 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "c88d4e2f-b133-4daa-aa44-22ba08a5e75e" + "6248cb40-771f-47d7-836a-9ca0aec37c06" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x8309000A" @@ -1051,22 +1069,23 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019059?recursive=false&op=DELETE&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTA1OT9yZWN1cnNpdmU9ZmFsc2Umb3A9REVMRVRFJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder014511?recursive=false&op=DELETE&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNDUxMT9yZWN1cnNpdmU9ZmFsc2Umb3A9REVMRVRFJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "35e86f59-53e7-4739-8505-483c7bbbe38b" + "686c3896-a967-46cb-b8b9-f79311ed5132" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"AccessControlException\",\r\n \"message\": \"Path is not empty [2b9ed85e-eb42-4f6c-b8e6-a6d6005ef09a][2017-07-24T15:44:17.2825628-07:00]\",\r\n \"javaClassName\": \"org.apache.hadoop.security.AccessControlException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "230" @@ -1081,16 +1100,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:06:28 GMT" + "Mon, 24 Jul 2017 22:44:16 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "95d9ca31-4364-45d0-8e0f-241183b76944" + "2b9ed85e-eb42-4f6c-b8e6-a6d6005ef09a" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x83090172" @@ -1105,8 +1124,8 @@ "StatusCode": 403 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019059%2FSDKTestFile01.txt7599?op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTA1OSUyRlNES1Rlc3RGaWxlMDEudHh0NzU5OT9vcD1DUkVBVEUmd3JpdGU9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder014511%2FSDKTestFile01.txt231?write=true&op=CREATE&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNDUxMSUyRlNES1Rlc3RGaWxlMDEudHh0MjMxP3dyaXRlPXRydWUmb3A9Q1JFQVRFJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -1117,13 +1136,14 @@ "42" ], "x-ms-client-request-id": [ - "f79a6d6e-1ec1-4581-bcbf-3eb15b7f1a28" + "820717da-7a9a-42cc-842b-b7bf69b06b52" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "", @@ -1138,22 +1158,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:06:28 GMT" + "Mon, 24 Jul 2017 22:44:16 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs1182.azuredatalakestore.net/webhdfs/v1/SDKTestFolder019059/SDKTestFile01.txt7599?op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs1281.azuredatalakestore.net/webhdfs/v1/SDKTestFolder014511/SDKTestFile01.txt231?write=true&op=CREATE&api-version=2016-11-01" ], "x-ms-request-id": [ - "5657bdd3-44f3-458b-ae3c-4b95c93cd30d" + "2951c45f-9a43-4049-8746-dc499a420058" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -1168,22 +1188,23 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019059%2FSDKTestFile01.txt7599?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTA1OSUyRlNES1Rlc3RGaWxlMDEudHh0NzU5OT9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder014511%2FSDKTestFile01.txt231?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNDUxMSUyRlNES1Rlc3RGaWxlMDEudHh0MjMxP29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "272e192a-bab2-44e6-a426-f92bdaaf05e6" + "cffe5009-4463-41f1-b976-769947398b9b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1500936256873,\r\n \"modificationTime\": 1500936256931,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "305" @@ -1198,16 +1219,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:06:28 GMT" + "Mon, 24 Jul 2017 22:44:16 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "0b15f80b-a7ed-4e93-83bb-deb588f0abd3" + "ad22c50c-819a-413f-b223-3713eaf3760d" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -1224,18 +1245,18 @@ ], "Names": { ".ctor": [ - "datalakerg1538", - "testdatalake19498", - "testadlfs1182" + "datalakerg16335", + "testdatalake17006", + "testadlfs1281" ], "CreateFolder": [ - "SDKTestFolder019059" + "SDKTestFolder014511" ], "CreateFile": [ - "SDKTestFolder019059/SDKTestFile01.txt7599" + "SDKTestFolder014511/SDKTestFile01.txt231" ] }, "Variables": { - "SubscriptionId": "53d9063d-87ae-4ea8-be90-3686c3b8669f" + "SubscriptionId": "04319d6d-4a66-4701-bb2f-e7dbbd9ae4db" } } \ No newline at end of file diff --git a/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemEmptyFileCreate.json b/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemEmptyFileCreate.json index b33d0577d50a..3b936a37c27b 100644 --- a/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemEmptyFileCreate.json +++ b/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemEmptyFileCreate.json @@ -1,22 +1,23 @@ { "Entries": [ { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3d87af08-fc7b-4368-b563-fbbef1b1dfa7" + "8e7be601-0d1c-4034-ad6e-54c85d03220c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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" @@ -28,7 +29,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:11:24 GMT" + "Mon, 24 Jul 2017 22:48:06 GMT" ], "Pragma": [ "no-cache" @@ -40,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-request-id": [ - "54f1cd21-b112-4933-bf93-7f5b3b899446" + "0f11df0e-9549-41af-83ba-606fb9ba2610" ], "x-ms-correlation-request-id": [ - "54f1cd21-b112-4933-bf93-7f5b3b899446" + "0f11df0e-9549-41af-83ba-606fb9ba2610" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181124Z:54f1cd21-b112-4933-bf93-7f5b3b899446" + "WESTUS2:20170724T224806Z:0f11df0e-9549-41af-83ba-606fb9ba2610" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -58,22 +59,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9db2b0c0-cb5f-49fa-9374-afbc1135fbcc" + "326c0b49-7256-481a-bdd0-93fc36849ff8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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" @@ -85,7 +87,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:11:24 GMT" + "Mon, 24 Jul 2017 22:48:06 GMT" ], "Pragma": [ "no-cache" @@ -94,16 +96,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14953" ], "x-ms-request-id": [ - "40463d0a-1eb2-4614-bd73-e557eeb4c526" + "39745c46-fc96-44fd-8989-67f751ac1589" ], "x-ms-correlation-request-id": [ - "40463d0a-1eb2-4614-bd73-e557eeb4c526" + "39745c46-fc96-44fd-8989-67f751ac1589" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181124Z:40463d0a-1eb2-4614-bd73-e557eeb4c526" + "WESTUS2:20170724T224806Z:39745c46-fc96-44fd-8989-67f751ac1589" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -112,22 +114,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ab0176b4-0099-43a1-824c-92d141306b5a" + "77adb38f-2b4f-400b-8135-be3c26573482" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/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 \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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 \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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,7 +142,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:11:25 GMT" + "Mon, 24 Jul 2017 22:48:07 GMT" ], "Pragma": [ "no-cache" @@ -151,16 +154,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1196" ], "x-ms-request-id": [ - "7a95b20b-04cf-4820-86d8-f861004db1d6" + "a0b54552-fc4e-4141-bf82-5c766198a4f2" ], "x-ms-correlation-request-id": [ - "7a95b20b-04cf-4820-86d8-f861004db1d6" + "a0b54552-fc4e-4141-bf82-5c766198a4f2" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181125Z:7a95b20b-04cf-4820-86d8-f861004db1d6" + "WESTUS2:20170724T224807Z:a0b54552-fc4e-4141-bf82-5c766198a4f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -169,22 +172,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "92f97c71-1b23-4fda-ae23-a3fbbfba9c65" + "63e5a70b-6105-4c12-b1d4-f30593a37251" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/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 \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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 \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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" @@ -196,7 +200,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:11:25 GMT" + "Mon, 24 Jul 2017 22:48:07 GMT" ], "Pragma": [ "no-cache" @@ -205,16 +209,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14952" ], "x-ms-request-id": [ - "9473a8eb-d3ae-422f-997d-795262ab8bde" + "144afd54-b30f-4cd1-ad9b-de70d59d0312" ], "x-ms-correlation-request-id": [ - "9473a8eb-d3ae-422f-997d-795262ab8bde" + "144afd54-b30f-4cd1-ad9b-de70d59d0312" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181125Z:9473a8eb-d3ae-422f-997d-795262ab8bde" + "WESTUS2:20170724T224808Z:144afd54-b30f-4cd1-ad9b-de70d59d0312" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -223,22 +227,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19212?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTIxMj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg18757?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxODc1Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "639fc917-95bc-488b-9b09-c138667b54fe" + "09d8e123-9fed-48e2-a5d0-04de19c1949d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg19212' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg18757' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -253,7 +258,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:11:25 GMT" + "Mon, 24 Jul 2017 22:48:07 GMT" ], "Pragma": [ "no-cache" @@ -262,16 +267,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14951" ], "x-ms-request-id": [ - "b66e7f2a-c47f-43bb-81ef-e577a71d96ab" + "51cbc6a9-d5fc-42d3-ae09-3cadd8dead3d" ], "x-ms-correlation-request-id": [ - "b66e7f2a-c47f-43bb-81ef-e577a71d96ab" + "51cbc6a9-d5fc-42d3-ae09-3cadd8dead3d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181125Z:b66e7f2a-c47f-43bb-81ef-e577a71d96ab" + "WESTUS2:20170724T224808Z:51cbc6a9-d5fc-42d3-ae09-3cadd8dead3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -280,22 +285,23 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19212?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTIxMj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg18757?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxODc1Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27fc4738-0698-4380-8e8d-54f16bd46bdb" + "d12a0182-1e1d-4f47-9fda-076005ccb016" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg18757\",\r\n \"name\": \"datalakerg18757\",\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 +313,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:11:26 GMT" + "Mon, 24 Jul 2017 22:48:08 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +322,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14950" ], "x-ms-request-id": [ - "60e5c081-f27b-4d94-b103-b02e85ea091c" + "d6b4296a-13f4-4dfa-a3b9-6643582d9eb8" ], "x-ms-correlation-request-id": [ - "60e5c081-f27b-4d94-b103-b02e85ea091c" + "d6b4296a-13f4-4dfa-a3b9-6643582d9eb8" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181126Z:60e5c081-f27b-4d94-b103-b02e85ea091c" + "WESTUS2:20170724T224809Z:d6b4296a-13f4-4dfa-a3b9-6643582d9eb8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +340,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19212?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTIxMj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg18757?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxODc1Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,16 +352,17 @@ "31" ], "x-ms-client-request-id": [ - "de44ea6b-27ec-4001-a971-6b29593598d9" + "292bbd3e-5b8b-4f06-a512-550f24859f56" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg18757\",\r\n \"name\": \"datalakerg18757\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -370,22 +377,22 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:11:26 GMT" + "Mon, 24 Jul 2017 22:48:08 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1195" ], "x-ms-request-id": [ - "7ec33522-302e-4198-8205-73fd1fb0368c" + "c885ccee-3346-44f0-802f-94723d70e494" ], "x-ms-correlation-request-id": [ - "7ec33522-302e-4198-8205-73fd1fb0368c" + "c885ccee-3346-44f0-802f-94723d70e494" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181126Z:7ec33522-302e-4198-8205-73fd1fb0368c" + "WESTUS2:20170724T224809Z:c885ccee-3346-44f0-802f-94723d70e494" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -394,22 +401,23 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19212/providers/Microsoft.DataLakeStore/accounts/testadlfs17264?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTIxMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTcyNjQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg18757/providers/Microsoft.DataLakeStore/accounts/testadlfs15814?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODc1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTU4MTQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "886963fc-44b1-4866-932d-24b3ffb2ef00" + "d0b8ead4-0d7c-4d8b-bdb9-6d9c7c7caa5d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs15814' under resource group 'datalakerg18757' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "166" @@ -424,7 +432,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:11:26 GMT" + "Mon, 24 Jul 2017 22:48:08 GMT" ], "Pragma": [ "no-cache" @@ -433,13 +441,13 @@ "gateway" ], "x-ms-request-id": [ - "8a4aeaa5-4dcd-4763-a05d-5ac59ff8e6bd" + "c39f05d0-21b2-4df2-96c7-ae4ac52d34fd" ], "x-ms-correlation-request-id": [ - "8a4aeaa5-4dcd-4763-a05d-5ac59ff8e6bd" + "c39f05d0-21b2-4df2-96c7-ae4ac52d34fd" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181127Z:8a4aeaa5-4dcd-4763-a05d-5ac59ff8e6bd" + "WESTUS2:20170724T224809Z:c39f05d0-21b2-4df2-96c7-ae4ac52d34fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -448,16 +456,17 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19212/providers/Microsoft.DataLakeStore/accounts/testadlfs17264?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTIxMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTcyNjQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg18757/providers/Microsoft.DataLakeStore/accounts/testadlfs15814?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODc1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTU4MTQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"testadlfs15814.azuredatalakestore.net\",\r\n \"accountId\": \"2269bca7-bd7f-4b7f-b464-2f0b631eb54a\",\r\n \"creationTime\": \"2017-07-24T22:48:12.7041755Z\",\r\n \"lastModifiedTime\": \"2017-07-24T22:48:12.7041755Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg18757/providers/Microsoft.DataLakeStore/accounts/testadlfs15814\",\r\n \"name\": \"testadlfs15814\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -472,7 +481,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:11:59 GMT" + "Mon, 24 Jul 2017 22:48:41 GMT" ], "Pragma": [ "no-cache" @@ -484,7 +493,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "1450df30-f9a5-4b68-9d65-2f87ad9dfe92" + "13f48150-4c02-4681-9462-65d391f54249" ], "X-Content-Type-Options": [ "nosniff" @@ -496,13 +505,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14980" ], "x-ms-correlation-request-id": [ - "f65d3354-ea57-423a-aee7-2b64d37482a8" + "c3cf8b7c-f04d-4f03-a6d2-9d15c525ac01" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181159Z:f65d3354-ea57-423a-aee7-2b64d37482a8" + "WESTUS2:20170724T224842Z:c3cf8b7c-f04d-4f03-a6d2-9d15c525ac01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -511,22 +520,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19212/providers/Microsoft.DataLakeStore/accounts/testadlfs17264?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTIxMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTcyNjQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg18757/providers/Microsoft.DataLakeStore/accounts/testadlfs15814?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODc1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTU4MTQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "44cb9c6d-220d-4dbb-9da4-a74e354f9949" + "b6a952b7-02b3-4c7a-ad1c-a8b137b1b06a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"testadlfs15814.azuredatalakestore.net\",\r\n \"accountId\": \"2269bca7-bd7f-4b7f-b464-2f0b631eb54a\",\r\n \"creationTime\": \"2017-07-24T22:48:12.7041755Z\",\r\n \"lastModifiedTime\": \"2017-07-24T22:48:12.7041755Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg18757/providers/Microsoft.DataLakeStore/accounts/testadlfs15814\",\r\n \"name\": \"testadlfs15814\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -541,7 +551,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:12:00 GMT" + "Mon, 24 Jul 2017 22:48:42 GMT" ], "Pragma": [ "no-cache" @@ -553,7 +563,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "590e5d5c-5312-400e-9d07-4af97893ccda" + "cca4f624-ac38-4211-ae88-78f32304ecf1" ], "X-Content-Type-Options": [ "nosniff" @@ -568,10 +578,10 @@ "14983" ], "x-ms-correlation-request-id": [ - "8be4711d-bafe-40aa-a3cf-50cf4b33407d" + "b57fda97-1170-4df0-9aab-4142fcc5bf23" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181200Z:8be4711d-bafe-40aa-a3cf-50cf4b33407d" + "WESTUS2:20170724T224842Z:b57fda97-1170-4df0-9aab-4142fcc5bf23" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -580,8 +590,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19212/providers/Microsoft.DataLakeStore/accounts/testadlfs17264?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTIxMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTcyNjQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg18757/providers/Microsoft.DataLakeStore/accounts/testadlfs15814?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODc1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTU4MTQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -592,16 +602,17 @@ "31" ], "x-ms-client-request-id": [ - "5530720d-6562-46b1-9207-40fc8551f6ce" + "5f61f940-859d-440c-a44d-0bd4fcc37950" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"2269bca7-bd7f-4b7f-b464-2f0b631eb54a\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg18757/providers/Microsoft.DataLakeStore/accounts/testadlfs15814\",\r\n \"name\": \"testadlfs15814\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "420" @@ -619,13 +630,13 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:11:27 GMT" + "Mon, 24 Jul 2017 22:48:10 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19212/providers/Microsoft.DataLakeStore/accounts/testadlfs17264/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg18757/providers/Microsoft.DataLakeStore/accounts/testadlfs15814/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -634,10 +645,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "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" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/2269bca7-bd7f-4b7f-b464-2f0b631eb54a0?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "ff3fc5ae-f9f4-4c7d-bac8-1a331810d3d4" + "645135e6-6c49-470f-9eda-113da3b80ef0" ], "X-Content-Type-Options": [ "nosniff" @@ -649,13 +660,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1194" ], "x-ms-correlation-request-id": [ - "ac927465-20e7-4df7-88a4-27395dfede3e" + "f5682eba-4914-472f-adbf-620f77e3e346" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181128Z:ac927465-20e7-4df7-88a4-27395dfede3e" + "WESTUS2:20170724T224811Z:f5682eba-4914-472f-adbf-620f77e3e346" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -664,13 +675,14 @@ "StatusCode": 201 }, { - "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", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/2269bca7-bd7f-4b7f-b464-2f0b631eb54a0?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzIyNjliY2E3LWJkN2YtNGI3Zi1iNDY0LTJmMGI2MzFlYjU0YTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -688,7 +700,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:11:58 GMT" + "Mon, 24 Jul 2017 22:48:41 GMT" ], "Pragma": [ "no-cache" @@ -700,7 +712,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "d62ad3e7-91dc-45c1-93a3-56cb7c8eca28" + "44feeb24-3631-4a7f-b1b9-5394231f728c" ], "X-Content-Type-Options": [ "nosniff" @@ -712,13 +724,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14982" ], "x-ms-correlation-request-id": [ - "d73beab9-a1d6-4f8d-bed4-67f14a54ad59" + "f3df46a0-62e5-4930-89cf-dbda025c299c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181159Z:d73beab9-a1d6-4f8d-bed4-67f14a54ad59" + "WESTUS2:20170724T224841Z:f3df46a0-62e5-4930-89cf-dbda025c299c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -727,8 +739,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt4756?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ0NzU2P3N5bmNGbGFnPURBVEEmb3A9Q1JFQVRFJndyaXRlPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt378?syncFlag=DATA&write=true&op=CREATE&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzNzg/c3luY0ZsYWc9REFUQSZ3cml0ZT10cnVlJm9wPUNSRUFURSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { @@ -739,13 +751,14 @@ "0" ], "x-ms-client-request-id": [ - "53c17fe9-7ef5-4a7b-9d97-e749fefdc97b" + "618e5893-c2f0-4522-8a4f-84f7228e6a45" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "", @@ -760,22 +773,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:12:06 GMT" + "Mon, 24 Jul 2017 22:48:46 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs17264.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt4756?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs15814.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt378?syncFlag=DATA&write=true&op=CREATE&api-version=2016-11-01" ], "x-ms-request-id": [ - "7e747382-51f8-4044-b497-8f7c94588682" + "122791d5-72f4-445d-94cc-d5502a6d8c18" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -790,22 +803,23 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt4756?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ0NzU2P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt378?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzNzg/b3A9R0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e366ba08-95c5-4743-b125-83038029979b" + "c529a629-930d-420e-968e-d5698afe92b0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1500936526856,\r\n \"modificationTime\": 1500936526856,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "304" @@ -820,16 +834,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:12:07 GMT" + "Mon, 24 Jul 2017 22:48:46 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "2d012ca8-9def-4758-9afe-e2177a9bed13" + "f4571299-e7e3-4d55-96dc-22b89034b307" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -846,15 +860,15 @@ ], "Names": { ".ctor": [ - "datalakerg19212", - "testdatalake13712", - "testadlfs17264" + "datalakerg18757", + "testdatalake16471", + "testadlfs15814" ], "CreateFile": [ - "SDKTestFolder01/SDKTestFile01.txt4756" + "SDKTestFolder01/SDKTestFile01.txt378" ] }, "Variables": { - "SubscriptionId": "53d9063d-87ae-4ea8-be90-3686c3b8669f" + "SubscriptionId": "04319d6d-4a66-4701-bb2f-e7dbbd9ae4db" } } \ No newline at end of file diff --git a/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemFileAlreadyExists.json b/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemFileAlreadyExists.json index 5b6fc6f6113e..38d601aa4970 100644 --- a/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemFileAlreadyExists.json +++ b/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemFileAlreadyExists.json @@ -1,22 +1,23 @@ { "Entries": [ { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6946b430-f514-4da9-9c0d-4439d6e44cc0" + "5ad75ac6-20fe-4360-a3ff-d105262720e5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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" @@ -28,7 +29,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:08:46 GMT" + "Mon, 24 Jul 2017 22:46:19 GMT" ], "Pragma": [ "no-cache" @@ -40,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1198" ], "x-ms-request-id": [ - "a5b91d68-c422-4df3-b847-a6f85bd7f3e3" + "1bafc9b1-5bab-45da-b093-4171d9f8ff91" ], "x-ms-correlation-request-id": [ - "a5b91d68-c422-4df3-b847-a6f85bd7f3e3" + "1bafc9b1-5bab-45da-b093-4171d9f8ff91" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180847Z:a5b91d68-c422-4df3-b847-a6f85bd7f3e3" + "WESTUS:20170724T224620Z:1bafc9b1-5bab-45da-b093-4171d9f8ff91" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -58,22 +59,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dbda84a8-d36b-483e-8df6-4083231a3d95" + "4f7342ec-d620-42aa-8137-a1bdfcd36532" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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" @@ -85,7 +87,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:08:46 GMT" + "Mon, 24 Jul 2017 22:46:19 GMT" ], "Pragma": [ "no-cache" @@ -94,16 +96,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14995" ], "x-ms-request-id": [ - "c81ea6af-c62d-496d-a92e-38569aad898c" + "66a4dc67-4bc0-4d65-8a05-c361383508d7" ], "x-ms-correlation-request-id": [ - "c81ea6af-c62d-496d-a92e-38569aad898c" + "66a4dc67-4bc0-4d65-8a05-c361383508d7" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180847Z:c81ea6af-c62d-496d-a92e-38569aad898c" + "WESTUS:20170724T224620Z:66a4dc67-4bc0-4d65-8a05-c361383508d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -112,22 +114,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9c5d62f-07c2-45df-b15f-8277425fc279" + "5ebedbbf-c7ee-4e59-b56b-a4aa6d826b65" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/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 \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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 \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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,7 +142,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:08:47 GMT" + "Mon, 24 Jul 2017 22:46:20 GMT" ], "Pragma": [ "no-cache" @@ -151,16 +154,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1197" ], "x-ms-request-id": [ - "37431f82-f75a-437d-b03c-b70d5b4b07f5" + "f9ca38ea-ecce-4b37-b1b3-5466305b4cae" ], "x-ms-correlation-request-id": [ - "37431f82-f75a-437d-b03c-b70d5b4b07f5" + "f9ca38ea-ecce-4b37-b1b3-5466305b4cae" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180848Z:37431f82-f75a-437d-b03c-b70d5b4b07f5" + "WESTUS:20170724T224621Z:f9ca38ea-ecce-4b37-b1b3-5466305b4cae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -169,22 +172,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a4668cdd-dd7d-4093-93c3-4b104900531e" + "d426520d-0c8e-47a2-a46e-fd5f99ed476e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/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 \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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 \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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" @@ -196,7 +200,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:08:47 GMT" + "Mon, 24 Jul 2017 22:46:20 GMT" ], "Pragma": [ "no-cache" @@ -205,16 +209,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14994" ], "x-ms-request-id": [ - "51c02027-2677-4144-80ab-672df15561f5" + "b083758a-0134-489c-b67d-a97babf045f0" ], "x-ms-correlation-request-id": [ - "51c02027-2677-4144-80ab-672df15561f5" + "b083758a-0134-489c-b67d-a97babf045f0" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180848Z:51c02027-2677-4144-80ab-672df15561f5" + "WESTUS:20170724T224621Z:b083758a-0134-489c-b67d-a97babf045f0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -223,25 +227,26 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1706?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzA2P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg17569?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzU2OT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "110af690-9f1b-43c7-8801-148051454d36" + "bbb8d037-339c-4800-bc34-057a3bc24755" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg1706' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg17569' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "106" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -253,7 +258,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:08:47 GMT" + "Mon, 24 Jul 2017 22:46:20 GMT" ], "Pragma": [ "no-cache" @@ -262,16 +267,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14993" ], "x-ms-request-id": [ - "3f7e6e4a-9c93-4744-991b-1ff9011670fa" + "d975be0d-ebbf-4bc2-8fad-563a657daecb" ], "x-ms-correlation-request-id": [ - "3f7e6e4a-9c93-4744-991b-1ff9011670fa" + "d975be0d-ebbf-4bc2-8fad-563a657daecb" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180848Z:3f7e6e4a-9c93-4744-991b-1ff9011670fa" + "WESTUS:20170724T224621Z:d975be0d-ebbf-4bc2-8fad-563a657daecb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -280,22 +285,23 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1706?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzA2P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg17569?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzU2OT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "db60073f-dad2-4e4d-80f8-2a4a66db6052" + "fd9c71cb-781e-4b19-8858-4746379e1f4d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg17569\",\r\n \"name\": \"datalakerg17569\",\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 +313,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:08:49 GMT" + "Mon, 24 Jul 2017 22:46:21 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +322,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14992" ], "x-ms-request-id": [ - "6b47d828-1a1b-4e01-8f1d-2c34646b72fe" + "f040a91f-3b1b-4150-9a6a-efd7c0e00baa" ], "x-ms-correlation-request-id": [ - "6b47d828-1a1b-4e01-8f1d-2c34646b72fe" + "f040a91f-3b1b-4150-9a6a-efd7c0e00baa" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180849Z:6b47d828-1a1b-4e01-8f1d-2c34646b72fe" + "WESTUS:20170724T224622Z:f040a91f-3b1b-4150-9a6a-efd7c0e00baa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +340,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1706?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzA2P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg17569?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzU2OT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,19 +352,20 @@ "31" ], "x-ms-client-request-id": [ - "233a7943-30e0-4166-83f0-8d5ffacac862" + "5007fd1d-586b-42a4-9072-7172ff200a02" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg17569\",\r\n \"name\": \"datalakerg17569\",\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" @@ -370,22 +377,22 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:08:49 GMT" + "Mon, 24 Jul 2017 22:46:21 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1196" ], "x-ms-request-id": [ - "8af0831a-d287-4a15-858d-48f3ee21e4c5" + "dad46911-e712-49ec-8848-744d847656e7" ], "x-ms-correlation-request-id": [ - "8af0831a-d287-4a15-858d-48f3ee21e4c5" + "dad46911-e712-49ec-8848-744d847656e7" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180849Z:8af0831a-d287-4a15-858d-48f3ee21e4c5" + "WESTUS:20170724T224622Z:dad46911-e712-49ec-8848-744d847656e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -394,25 +401,26 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1706/providers/Microsoft.DataLakeStore/accounts/testadlfs18591?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxODU5MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg17569/providers/Microsoft.DataLakeStore/accounts/testadlfs18308?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzU2OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTgzMDg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "87548207-2bf3-40a6-8bac-896c989a1573" + "8fe614d4-87b4-4407-9360-9cb07fa50dae" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs18308' under resource group 'datalakerg17569' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "165" + "166" ], "Content-Type": [ "application/json; charset=utf-8" @@ -424,7 +432,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:08:49 GMT" + "Mon, 24 Jul 2017 22:46:23 GMT" ], "Pragma": [ "no-cache" @@ -433,13 +441,13 @@ "gateway" ], "x-ms-request-id": [ - "befc495c-d378-4548-8f60-f74df089cdb1" + "ff235be2-c48c-4a9f-8ddd-efd0b34b0a9b" ], "x-ms-correlation-request-id": [ - "befc495c-d378-4548-8f60-f74df089cdb1" + "ff235be2-c48c-4a9f-8ddd-efd0b34b0a9b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180849Z:befc495c-d378-4548-8f60-f74df089cdb1" + "WESTUS:20170724T224623Z:ff235be2-c48c-4a9f-8ddd-efd0b34b0a9b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -448,16 +456,17 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1706/providers/Microsoft.DataLakeStore/accounts/testadlfs18591?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxODU5MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg17569/providers/Microsoft.DataLakeStore/accounts/testadlfs18308?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzU2OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTgzMDg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"testadlfs18308.azuredatalakestore.net\",\r\n \"accountId\": \"aae1fcae-42f3-47f9-bcbb-19c248fbd8b2\",\r\n \"creationTime\": \"2017-07-24T22:46:29.3139687Z\",\r\n \"lastModifiedTime\": \"2017-07-24T22:46:29.3139687Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg17569/providers/Microsoft.DataLakeStore/accounts/testadlfs18308\",\r\n \"name\": \"testadlfs18308\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -472,7 +481,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:09:22 GMT" + "Mon, 24 Jul 2017 22:46:56 GMT" ], "Pragma": [ "no-cache" @@ -484,7 +493,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "d1a2b6a8-32d2-45ba-a941-4672124fd2fb" + "4e730622-8ee0-4bd9-93d8-a86d802e2bd2" ], "X-Content-Type-Options": [ "nosniff" @@ -496,13 +505,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14998" ], "x-ms-correlation-request-id": [ - "b21242fb-177b-4c25-b439-d4ebf85e35ea" + "156f13d6-b59f-477f-99bf-ac70c6262780" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180922Z:b21242fb-177b-4c25-b439-d4ebf85e35ea" + "WESTUS:20170724T224656Z:156f13d6-b59f-477f-99bf-ac70c6262780" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -511,22 +520,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1706/providers/Microsoft.DataLakeStore/accounts/testadlfs18591?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxODU5MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg17569/providers/Microsoft.DataLakeStore/accounts/testadlfs18308?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzU2OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTgzMDg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "85e7594d-ec1c-4d3c-a1f1-d63794014c8f" + "3f60d85c-7bc9-40fa-8f9e-31da447d238b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"testadlfs18308.azuredatalakestore.net\",\r\n \"accountId\": \"aae1fcae-42f3-47f9-bcbb-19c248fbd8b2\",\r\n \"creationTime\": \"2017-07-24T22:46:29.3139687Z\",\r\n \"lastModifiedTime\": \"2017-07-24T22:46:29.3139687Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg17569/providers/Microsoft.DataLakeStore/accounts/testadlfs18308\",\r\n \"name\": \"testadlfs18308\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -541,7 +551,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:09:22 GMT" + "Mon, 24 Jul 2017 22:46:57 GMT" ], "Pragma": [ "no-cache" @@ -553,7 +563,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "c5ed6e35-63e7-4867-ba3f-1681cc4228b1" + "b356b1d7-f8ee-48af-a46d-64be2fd6649e" ], "X-Content-Type-Options": [ "nosniff" @@ -565,13 +575,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14995" ], "x-ms-correlation-request-id": [ - "1a1d733d-aaea-46b1-af36-a926c3cf6cfb" + "ffd40a01-f085-4816-85a9-413751068567" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180923Z:1a1d733d-aaea-46b1-af36-a926c3cf6cfb" + "WESTUS:20170724T224657Z:ffd40a01-f085-4816-85a9-413751068567" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -580,8 +590,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1706/providers/Microsoft.DataLakeStore/accounts/testadlfs18591?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxODU5MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg17569/providers/Microsoft.DataLakeStore/accounts/testadlfs18308?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzU2OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTgzMDg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -592,19 +602,20 @@ "31" ], "x-ms-client-request-id": [ - "40ba097c-b0cd-4c19-bccf-e83d11418b35" + "f84ac373-c1c6-49e3-9d53-4b955aa42807" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"aae1fcae-42f3-47f9-bcbb-19c248fbd8b2\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg17569/providers/Microsoft.DataLakeStore/accounts/testadlfs18308\",\r\n \"name\": \"testadlfs18308\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "419" + "420" ], "Content-Type": [ "application/json" @@ -619,13 +630,13 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:08:51 GMT" + "Mon, 24 Jul 2017 22:46:25 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1706/providers/Microsoft.DataLakeStore/accounts/testadlfs18591/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg17569/providers/Microsoft.DataLakeStore/accounts/testadlfs18308/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -634,10 +645,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "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" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/aae1fcae-42f3-47f9-bcbb-19c248fbd8b20?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "1362daa2-e829-4a2a-bfc0-24cedbf1f4e8" + "0ed90ac1-e562-4fa4-8e72-e5e3aab701f8" ], "X-Content-Type-Options": [ "nosniff" @@ -649,13 +660,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1199" ], "x-ms-correlation-request-id": [ - "d0394223-d8f0-4830-9884-7e23a32b260e" + "5e7ebf58-0a31-4d31-bc48-7b6c5f910341" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180851Z:d0394223-d8f0-4830-9884-7e23a32b260e" + "WESTUS:20170724T224625Z:5e7ebf58-0a31-4d31-bc48-7b6c5f910341" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -664,13 +675,14 @@ "StatusCode": 201 }, { - "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", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/aae1fcae-42f3-47f9-bcbb-19c248fbd8b20?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2FhZTFmY2FlLTQyZjMtNDdmOS1iY2JiLTE5YzI0OGZiZDhiMjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -688,7 +700,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:09:21 GMT" + "Mon, 24 Jul 2017 22:46:55 GMT" ], "Pragma": [ "no-cache" @@ -700,7 +712,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "62223696-7d64-40a2-9323-f48142590832" + "9f99d67e-799b-4139-89f5-02e3c4a2c7c7" ], "X-Content-Type-Options": [ "nosniff" @@ -712,13 +724,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14999" ], "x-ms-correlation-request-id": [ - "1a85de23-083d-485c-92c2-e1951b68e45c" + "635c5601-dfd7-4216-bb53-f350dd28f05f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180922Z:1a85de23-083d-485c-92c2-e1951b68e45c" + "WESTUS:20170724T224656Z:635c5601-dfd7-4216-bb53-f350dd28f05f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -727,8 +739,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt2514?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQyNTE0P3N5bmNGbGFnPURBVEEmb3A9Q1JFQVRFJndyaXRlPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt2608?syncFlag=DATA&write=true&op=CREATE&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQyNjA4P3N5bmNGbGFnPURBVEEmd3JpdGU9dHJ1ZSZvcD1DUkVBVEUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { @@ -739,13 +751,14 @@ "0" ], "x-ms-client-request-id": [ - "07adc3ad-c6af-4d47-88cc-6f89b770453e" + "f38835ad-317a-4992-95ab-1da27a4e2b93" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "", @@ -760,22 +773,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:09:24 GMT" + "Mon, 24 Jul 2017 22:47:00 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs18591.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt2514?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs18308.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt2608?syncFlag=DATA&write=true&op=CREATE&api-version=2016-11-01" ], "x-ms-request-id": [ - "56d47025-c226-4c7c-bf18-d52c66debd3a" + "dfba4c8a-bde5-4f17-95ac-1d4c35036e3d" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -790,22 +803,23 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt2514?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQyNTE0P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt2608?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQyNjA4P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e20eac6f-f43e-4544-b1b5-145ff77abc45" + "d19c7f3b-63e6-4ea5-bacf-33afa2edba6f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1500936421064,\r\n \"modificationTime\": 1500936421064,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "304" @@ -820,16 +834,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:09:24 GMT" + "Mon, 24 Jul 2017 22:47:00 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "f0e745e0-f085-4ddf-8b56-2e7033c57acf" + "e66bdd04-d17b-4e9b-89ec-2de6c841e7cd" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -844,8 +858,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt2514?op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQyNTE0P29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt2608?write=true&op=CREATE&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQyNjA4P3dyaXRlPXRydWUmb3A9Q1JFQVRFJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { @@ -856,16 +870,17 @@ "0" ], "x-ms-client-request-id": [ - "c2e2c48d-2fe1-495f-a756-5897bcca7cfe" + "63b4353f-2aa7-4998-a31c-48fbd6834487" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileAlreadyExistsException\",\r\n \"message\": \"[65659c82-446f-40ad-9205-e058c62d5b70]][Op=CREATE][[d__35::MoveNext::0x83090009]] Path /SDKTestFolder01/SDKTestFile01.txt2608 already exists\",\r\n \"javaClassName\": \"org.apache.hadoop.fs.FileAlreadyExistsException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "293" @@ -880,16 +895,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:09:24 GMT" + "Mon, 24 Jul 2017 22:47:00 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "979ded7f-0103-4a97-8e91-5ed3ac95d78b" + "65659c82-446f-40ad-9205-e058c62d5b70" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x83090009" @@ -906,15 +921,15 @@ ], "Names": { ".ctor": [ - "datalakerg1706", - "testdatalake17530", - "testadlfs18591" + "datalakerg17569", + "testdatalake1886", + "testadlfs18308" ], "CreateFile": [ - "SDKTestFolder01/SDKTestFile01.txt2514" + "SDKTestFolder01/SDKTestFile01.txt2608" ] }, "Variables": { - "SubscriptionId": "53d9063d-87ae-4ea8-be90-3686c3b8669f" + "SubscriptionId": "04319d6d-4a66-4701-bb2f-e7dbbd9ae4db" } } \ No newline at end of file diff --git a/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemFileCreateWithContents.json b/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemFileCreateWithContents.json index c75c4d65f560..aa65c6798372 100644 --- a/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemFileCreateWithContents.json +++ b/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemFileCreateWithContents.json @@ -1,22 +1,23 @@ { "Entries": [ { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "42269bb6-b8ee-4dd3-9e2a-5674ec4c8e7b" + "1093c322-ef3f-4060-87d2-c485300f1344" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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" @@ -28,7 +29,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:12:56 GMT" + "Mon, 24 Jul 2017 22:49:42 GMT" ], "Pragma": [ "no-cache" @@ -40,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1197" ], "x-ms-request-id": [ - "112dadfa-fe37-4a62-9b8b-79c5781a4b7a" + "0efffdfd-73f0-4193-8238-24e80e60fe7e" ], "x-ms-correlation-request-id": [ - "112dadfa-fe37-4a62-9b8b-79c5781a4b7a" + "0efffdfd-73f0-4193-8238-24e80e60fe7e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181256Z:112dadfa-fe37-4a62-9b8b-79c5781a4b7a" + "WESTUS2:20170724T224942Z:0efffdfd-73f0-4193-8238-24e80e60fe7e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -58,22 +59,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "53a36968-9fc8-40e8-99de-2179f8f3cd69" + "54cb708f-da6a-4cad-a6a9-a001e7755cfa" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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" @@ -85,7 +87,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:12:56 GMT" + "Mon, 24 Jul 2017 22:49:42 GMT" ], "Pragma": [ "no-cache" @@ -94,16 +96,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14979" ], "x-ms-request-id": [ - "ea394bca-a41f-48e8-8021-51cce8a5589a" + "42e971a9-1ce2-4e0c-884c-86c4d3d0b06e" ], "x-ms-correlation-request-id": [ - "ea394bca-a41f-48e8-8021-51cce8a5589a" + "42e971a9-1ce2-4e0c-884c-86c4d3d0b06e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181256Z:ea394bca-a41f-48e8-8021-51cce8a5589a" + "WESTUS2:20170724T224942Z:42e971a9-1ce2-4e0c-884c-86c4d3d0b06e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -112,22 +114,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "08502aa1-9edb-4d81-9f94-59382d10e201" + "49f07e84-ada6-47b7-9549-b71e3048c338" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/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 \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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 \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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,7 +142,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:12:57 GMT" + "Mon, 24 Jul 2017 22:49:43 GMT" ], "Pragma": [ "no-cache" @@ -151,16 +154,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1196" ], "x-ms-request-id": [ - "2410957d-d7e8-4f12-bfef-033e66ffbdd6" + "f3684059-54fb-4c92-9760-aa2426e92a6d" ], "x-ms-correlation-request-id": [ - "2410957d-d7e8-4f12-bfef-033e66ffbdd6" + "f3684059-54fb-4c92-9760-aa2426e92a6d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181257Z:2410957d-d7e8-4f12-bfef-033e66ffbdd6" + "WESTUS2:20170724T224943Z:f3684059-54fb-4c92-9760-aa2426e92a6d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -169,22 +172,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5ff8c856-5b6d-4d4a-8f3e-000b7f16d345" + "6bf67a28-c5a1-4539-94c4-5dbe71af136c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/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 \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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 \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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" @@ -196,7 +200,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:12:57 GMT" + "Mon, 24 Jul 2017 22:49:43 GMT" ], "Pragma": [ "no-cache" @@ -205,16 +209,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14978" ], "x-ms-request-id": [ - "e89857d0-e5f9-4062-b9fd-1ba7984c8737" + "71110386-0cc6-4eea-a22f-f2b7661afd47" ], "x-ms-correlation-request-id": [ - "e89857d0-e5f9-4062-b9fd-1ba7984c8737" + "71110386-0cc6-4eea-a22f-f2b7661afd47" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181257Z:e89857d0-e5f9-4062-b9fd-1ba7984c8737" + "WESTUS2:20170724T224944Z:71110386-0cc6-4eea-a22f-f2b7661afd47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -223,25 +227,26 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14817?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNDgxNz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg1944?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTQ0P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ad8e5fe3-c9f9-493e-9f52-2d117dd6acd3" + "10482cf3-1041-4f12-a39b-c794d4a209cc" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg14817' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg1944' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "107" + "106" ], "Content-Type": [ "application/json; charset=utf-8" @@ -253,7 +258,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:12:57 GMT" + "Mon, 24 Jul 2017 22:49:44 GMT" ], "Pragma": [ "no-cache" @@ -262,16 +267,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14977" ], "x-ms-request-id": [ - "06de7d4e-2092-4216-a332-71b437a62c6a" + "4a4dfb4f-ddb7-4e41-9c12-cc6dc3d39d53" ], "x-ms-correlation-request-id": [ - "06de7d4e-2092-4216-a332-71b437a62c6a" + "4a4dfb4f-ddb7-4e41-9c12-cc6dc3d39d53" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181257Z:06de7d4e-2092-4216-a332-71b437a62c6a" + "WESTUS2:20170724T224944Z:4a4dfb4f-ddb7-4e41-9c12-cc6dc3d39d53" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -280,22 +285,23 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14817?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNDgxNz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg1944?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTQ0P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2ca9ac75-1e05-477e-a427-9e939f074485" + "4cfab3d3-7fe3-4707-9153-400d172b3561" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg1944\",\r\n \"name\": \"datalakerg1944\",\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 +313,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:12:58 GMT" + "Mon, 24 Jul 2017 22:49:45 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +322,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14976" ], "x-ms-request-id": [ - "39f5bfc3-37ef-4463-8796-56693c7b7441" + "0da91937-5a8c-438d-82a3-7b32e0226c1e" ], "x-ms-correlation-request-id": [ - "39f5bfc3-37ef-4463-8796-56693c7b7441" + "0da91937-5a8c-438d-82a3-7b32e0226c1e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181258Z:39f5bfc3-37ef-4463-8796-56693c7b7441" + "WESTUS2:20170724T224945Z:0da91937-5a8c-438d-82a3-7b32e0226c1e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +340,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14817?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNDgxNz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg1944?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTQ0P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,19 +352,20 @@ "31" ], "x-ms-client-request-id": [ - "96f043cb-29b0-45e7-8532-d8ca16108522" + "31bdf810-74f5-41d0-947a-129fa730b81a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg1944\",\r\n \"name\": \"datalakerg1944\",\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" @@ -370,22 +377,22 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:12:58 GMT" + "Mon, 24 Jul 2017 22:49:45 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1195" ], "x-ms-request-id": [ - "abd3ad93-f544-479a-bb48-90b22a80c07b" + "bedab048-29e6-468c-b3b1-9f6397e5fbef" ], "x-ms-correlation-request-id": [ - "abd3ad93-f544-479a-bb48-90b22a80c07b" + "bedab048-29e6-468c-b3b1-9f6397e5fbef" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181258Z:abd3ad93-f544-479a-bb48-90b22a80c07b" + "WESTUS2:20170724T224945Z:bedab048-29e6-468c-b3b1-9f6397e5fbef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -394,22 +401,23 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14817/providers/Microsoft.DataLakeStore/accounts/testadlfs1481?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDgxNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTQ4MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg1944/providers/Microsoft.DataLakeStore/accounts/testadlfs13426?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxMzQyNj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "155aaa90-81cc-4d1d-83a2-5ed12643dde2" + "5e73e691-c1a0-49da-99ee-947974da387b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs13426' under resource group 'datalakerg1944' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "165" @@ -424,7 +432,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:12:58 GMT" + "Mon, 24 Jul 2017 22:49:45 GMT" ], "Pragma": [ "no-cache" @@ -433,13 +441,13 @@ "gateway" ], "x-ms-request-id": [ - "431e08e2-37ac-4730-a79b-83e22372f936" + "fb8d7843-bd5f-4674-b702-1a6bfe2ac8bd" ], "x-ms-correlation-request-id": [ - "431e08e2-37ac-4730-a79b-83e22372f936" + "fb8d7843-bd5f-4674-b702-1a6bfe2ac8bd" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181259Z:431e08e2-37ac-4730-a79b-83e22372f936" + "WESTUS2:20170724T224946Z:fb8d7843-bd5f-4674-b702-1a6bfe2ac8bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -448,16 +456,17 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14817/providers/Microsoft.DataLakeStore/accounts/testadlfs1481?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDgxNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTQ4MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg1944/providers/Microsoft.DataLakeStore/accounts/testadlfs13426?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxMzQyNj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"testadlfs13426.azuredatalakestore.net\",\r\n \"accountId\": \"ac6a7c64-7fb4-4504-83a5-ca47977442ec\",\r\n \"creationTime\": \"2017-07-24T22:49:50.4751299Z\",\r\n \"lastModifiedTime\": \"2017-07-24T22:49:50.4751299Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg1944/providers/Microsoft.DataLakeStore/accounts/testadlfs13426\",\r\n \"name\": \"testadlfs13426\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -472,7 +481,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:13:32 GMT" + "Mon, 24 Jul 2017 22:50:19 GMT" ], "Pragma": [ "no-cache" @@ -484,7 +493,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "2cbf4284-7b34-4924-807e-e9d2ebeb5595" + "ccb9c6f6-0799-4a13-b2b9-365da9becd23" ], "X-Content-Type-Options": [ "nosniff" @@ -496,13 +505,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14991" ], "x-ms-correlation-request-id": [ - "b720e0a3-eb1b-4030-8591-e89b57b5e43e" + "4cfc189f-6888-4bbc-bc2d-d3e89136ac0f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181332Z:b720e0a3-eb1b-4030-8591-e89b57b5e43e" + "WESTUS2:20170724T225020Z:4cfc189f-6888-4bbc-bc2d-d3e89136ac0f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -511,22 +520,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14817/providers/Microsoft.DataLakeStore/accounts/testadlfs1481?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDgxNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTQ4MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg1944/providers/Microsoft.DataLakeStore/accounts/testadlfs13426?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxMzQyNj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ec1060b2-b3b8-4691-8ff5-ec105c03d5df" + "8ab4979a-1826-4fa5-8c6e-779a5fef79f5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"testadlfs13426.azuredatalakestore.net\",\r\n \"accountId\": \"ac6a7c64-7fb4-4504-83a5-ca47977442ec\",\r\n \"creationTime\": \"2017-07-24T22:49:50.4751299Z\",\r\n \"lastModifiedTime\": \"2017-07-24T22:49:50.4751299Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg1944/providers/Microsoft.DataLakeStore/accounts/testadlfs13426\",\r\n \"name\": \"testadlfs13426\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -541,7 +551,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:13:32 GMT" + "Mon, 24 Jul 2017 22:50:19 GMT" ], "Pragma": [ "no-cache" @@ -553,7 +563,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "735e06d3-2e31-41e7-8e56-d41ad10bc15a" + "0bfdf9c4-f533-4c7b-8595-fcfaef1d5309" ], "X-Content-Type-Options": [ "nosniff" @@ -565,13 +575,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14992" ], "x-ms-correlation-request-id": [ - "5b202160-ecfb-4d2c-80c0-13210b348944" + "0245b064-8a23-4128-a562-326b356f3ba8" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181333Z:5b202160-ecfb-4d2c-80c0-13210b348944" + "WESTUS2:20170724T225020Z:0245b064-8a23-4128-a562-326b356f3ba8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -580,8 +590,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14817/providers/Microsoft.DataLakeStore/accounts/testadlfs1481?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDgxNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTQ4MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg1944/providers/Microsoft.DataLakeStore/accounts/testadlfs13426?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxMzQyNj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -592,19 +602,20 @@ "31" ], "x-ms-client-request-id": [ - "c28e13a8-d9b5-442a-bc43-723dfabda140" + "cc5d1ff2-6b71-46da-9512-db81d7b1fdc4" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"ac6a7c64-7fb4-4504-83a5-ca47977442ec\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg1944/providers/Microsoft.DataLakeStore/accounts/testadlfs13426\",\r\n \"name\": \"testadlfs13426\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "418" + "419" ], "Content-Type": [ "application/json" @@ -619,13 +630,13 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:13:00 GMT" + "Mon, 24 Jul 2017 22:49:47 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14817/providers/Microsoft.DataLakeStore/accounts/testadlfs1481/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg1944/providers/Microsoft.DataLakeStore/accounts/testadlfs13426/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -634,10 +645,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "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" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/ac6a7c64-7fb4-4504-83a5-ca47977442ec0?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "14456059-7700-4e6d-96b8-958e81ff99da" + "1b3ea847-adb5-4502-b1bc-ccab8af7b3a6" ], "X-Content-Type-Options": [ "nosniff" @@ -652,10 +663,10 @@ "1196" ], "x-ms-correlation-request-id": [ - "c6ce183e-2695-4bc3-9be6-2642998aa610" + "d6bafad4-3fc9-4d1f-95bd-50a3dfd4b6ee" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181301Z:c6ce183e-2695-4bc3-9be6-2642998aa610" + "WESTUS2:20170724T224948Z:d6bafad4-3fc9-4d1f-95bd-50a3dfd4b6ee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -664,13 +675,14 @@ "StatusCode": 201 }, { - "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", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/ac6a7c64-7fb4-4504-83a5-ca47977442ec0?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2FjNmE3YzY0LTdmYjQtNDUwNC04M2E1LWNhNDc5Nzc0NDJlYzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -688,7 +700,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:13:31 GMT" + "Mon, 24 Jul 2017 22:50:18 GMT" ], "Pragma": [ "no-cache" @@ -700,7 +712,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "2723ee72-fbc3-4ab4-b1d1-31bdf37e70eb" + "c9d35fd7-a06e-4bdd-822b-5f43c6545d66" ], "X-Content-Type-Options": [ "nosniff" @@ -712,13 +724,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14993" ], "x-ms-correlation-request-id": [ - "802af38f-b777-4404-aca6-885fed1972da" + "995712f6-9533-4550-b54c-a1c66336d664" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181331Z:802af38f-b777-4404-aca6-885fed1972da" + "WESTUS2:20170724T225019Z:995712f6-9533-4550-b54c-a1c66336d664" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -727,8 +739,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3576?op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzNTc2P29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7896?write=true&op=CREATE&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3ODk2P3dyaXRlPXRydWUmb3A9Q1JFQVRFJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -739,13 +751,14 @@ "42" ], "x-ms-client-request-id": [ - "303bf950-42dd-4eb6-aa8a-361de7215dd1" + "57ac7976-c835-4349-8030-a0e1cf2b4647" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "", @@ -760,22 +773,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:13:43 GMT" + "Mon, 24 Jul 2017 22:50:23 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs1481.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt3576?op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs13426.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt7896?write=true&op=CREATE&api-version=2016-11-01" ], "x-ms-request-id": [ - "abc9f946-9bac-4ade-b6e0-9ce276d05788" + "670ac5f7-6579-4e44-a28b-ed45f9d71895" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -790,22 +803,23 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3576?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzNTc2P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7896?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3ODk2P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "448e76fc-9afa-49d1-bbc1-4c17061840d2" + "e7ba6e20-49e8-4001-b6d4-2cc80aff5822" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1500936623734,\r\n \"modificationTime\": 1500936623774,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "305" @@ -820,16 +834,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:13:43 GMT" + "Mon, 24 Jul 2017 22:50:23 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "b5854461-0aea-430a-a7f5-d390b6f57a2a" + "749bb9b4-d8dc-46f3-a0ad-12489afec55b" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -844,19 +858,20 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3576?op=OPEN&read=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzNTc2P29wPU9QRU4mcmVhZD10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7896?read=true&op=OPEN&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3ODk2P3JlYWQ9dHJ1ZSZvcD1PUEVOJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "62b4f599-324f-41b2-a2b6-7bdfdb772108" + "72903283-f9f8-4490-978f-1d3daa9806ca" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "These are some random test contents 1234!@", @@ -871,7 +886,7 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:13:43 GMT" + "Mon, 24 Jul 2017 22:50:23 GMT" ], "Pragma": [ "no-cache" @@ -880,10 +895,10 @@ "chunked" ], "x-ms-request-id": [ - "91be6361-9118-4c7a-9ad7-14c0488d3c88" + "eed33bd9-e4c8-4b42-9257-b13862be6480" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -900,15 +915,15 @@ ], "Names": { ".ctor": [ - "datalakerg14817", - "testdatalake16400", - "testadlfs1481" + "datalakerg1944", + "testdatalake16353", + "testadlfs13426" ], "CreateFile": [ - "SDKTestFolder01/SDKTestFile01.txt3576" + "SDKTestFolder01/SDKTestFile01.txt7896" ] }, "Variables": { - "SubscriptionId": "53d9063d-87ae-4ea8-be90-3686c3b8669f" + "SubscriptionId": "04319d6d-4a66-4701-bb2f-e7dbbd9ae4db" } } \ No newline at end of file diff --git a/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemFolderCreate.json b/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemFolderCreate.json index 73e1d0bca3e0..0fd7d6af0355 100644 --- a/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemFolderCreate.json +++ b/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemFolderCreate.json @@ -1,22 +1,23 @@ { "Entries": [ { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3b60be79-a963-4c1f-9ea7-0e238bb6ffde" + "0a07d658-e630-4e60-876f-98e084b4119d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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" @@ -28,7 +29,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:07:15 GMT" + "Mon, 24 Jul 2017 22:45:18 GMT" ], "Pragma": [ "no-cache" @@ -40,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-request-id": [ - "50f656eb-66c6-44f5-bf08-b60ab8640384" + "1d1d01e8-dd56-4d51-8b9a-65eb06c05bdc" ], "x-ms-correlation-request-id": [ - "50f656eb-66c6-44f5-bf08-b60ab8640384" + "1d1d01e8-dd56-4d51-8b9a-65eb06c05bdc" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180716Z:50f656eb-66c6-44f5-bf08-b60ab8640384" + "WESTUS2:20170724T224518Z:1d1d01e8-dd56-4d51-8b9a-65eb06c05bdc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -58,22 +59,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "73010744-d956-4ffd-b21e-ef8ad5b968f4" + "3fe7b57d-bad2-4baf-a3bf-69212358e174" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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" @@ -85,7 +87,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:07:15 GMT" + "Mon, 24 Jul 2017 22:45:19 GMT" ], "Pragma": [ "no-cache" @@ -94,16 +96,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14988" ], "x-ms-request-id": [ - "03d92f9b-6702-4efd-87e9-cabfa632c03d" + "9d942662-8753-4b74-aba7-7ab4f174551c" ], "x-ms-correlation-request-id": [ - "03d92f9b-6702-4efd-87e9-cabfa632c03d" + "9d942662-8753-4b74-aba7-7ab4f174551c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180716Z:03d92f9b-6702-4efd-87e9-cabfa632c03d" + "WESTUS2:20170724T224519Z:9d942662-8753-4b74-aba7-7ab4f174551c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -112,22 +114,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e8f44061-e486-4848-ba1e-9667b380d86c" + "6f2e66b1-0d2b-479e-8e07-82d1180d67e9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/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 \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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 \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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,7 +142,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:07:16 GMT" + "Mon, 24 Jul 2017 22:45:20 GMT" ], "Pragma": [ "no-cache" @@ -151,16 +154,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1198" ], "x-ms-request-id": [ - "c2a209aa-ddf5-4bbd-bcff-e1397dff8e9c" + "e8439191-bf02-4e68-8626-9e90d17b9f88" ], "x-ms-correlation-request-id": [ - "c2a209aa-ddf5-4bbd-bcff-e1397dff8e9c" + "e8439191-bf02-4e68-8626-9e90d17b9f88" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180717Z:c2a209aa-ddf5-4bbd-bcff-e1397dff8e9c" + "WESTUS2:20170724T224520Z:e8439191-bf02-4e68-8626-9e90d17b9f88" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -169,22 +172,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9099def9-6814-411a-9d26-d66030572954" + "0cfa3b39-2a50-4428-9ff6-8e7ef3bc3949" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/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 \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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 \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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" @@ -196,7 +200,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:07:16 GMT" + "Mon, 24 Jul 2017 22:45:20 GMT" ], "Pragma": [ "no-cache" @@ -205,16 +209,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14987" ], "x-ms-request-id": [ - "170111b7-8155-48f9-a56a-779eb90ca19e" + "b66c51a6-92f6-4b3f-a8f7-d40000c0a5b5" ], "x-ms-correlation-request-id": [ - "170111b7-8155-48f9-a56a-779eb90ca19e" + "b66c51a6-92f6-4b3f-a8f7-d40000c0a5b5" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180717Z:170111b7-8155-48f9-a56a-779eb90ca19e" + "WESTUS2:20170724T224520Z:b66c51a6-92f6-4b3f-a8f7-d40000c0a5b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -223,22 +227,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13083?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzA4Mz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg13016?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzAxNj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "12883abf-a589-4ac9-b0d2-82d66b22886d" + "115f2612-4cf7-4ba8-8f1d-a424a90e1c06" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg13083' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg13016' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -253,7 +258,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:07:16 GMT" + "Mon, 24 Jul 2017 22:45:20 GMT" ], "Pragma": [ "no-cache" @@ -262,16 +267,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14986" ], "x-ms-request-id": [ - "ff2c89fb-3a1c-4272-822a-f6c93c3e482a" + "c4e822fe-e5e3-449e-b2e6-943c7119f7b1" ], "x-ms-correlation-request-id": [ - "ff2c89fb-3a1c-4272-822a-f6c93c3e482a" + "c4e822fe-e5e3-449e-b2e6-943c7119f7b1" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180717Z:ff2c89fb-3a1c-4272-822a-f6c93c3e482a" + "WESTUS2:20170724T224520Z:c4e822fe-e5e3-449e-b2e6-943c7119f7b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -280,22 +285,23 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13083?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzA4Mz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg13016?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzAxNj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6be4ca29-44cb-4144-8b63-e96763aa8f4b" + "e2b15ca5-e3ef-4b96-ad1e-4477173e2484" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg13016\",\r\n \"name\": \"datalakerg13016\",\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 +313,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:07:17 GMT" + "Mon, 24 Jul 2017 22:45:22 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +322,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14985" ], "x-ms-request-id": [ - "7c79029c-e5e6-4e29-b7ea-e8e987eba3b6" + "79ebf493-2501-495e-bfb1-8494d74436e9" ], "x-ms-correlation-request-id": [ - "7c79029c-e5e6-4e29-b7ea-e8e987eba3b6" + "79ebf493-2501-495e-bfb1-8494d74436e9" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180718Z:7c79029c-e5e6-4e29-b7ea-e8e987eba3b6" + "WESTUS2:20170724T224522Z:79ebf493-2501-495e-bfb1-8494d74436e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +340,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13083?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzA4Mz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg13016?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzAxNj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,16 +352,17 @@ "31" ], "x-ms-client-request-id": [ - "01a79804-6e58-48c7-98b3-0c3f7e04dd86" + "e4cd783d-bc40-4956-bb76-f47227ae027c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg13016\",\r\n \"name\": \"datalakerg13016\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -370,22 +377,22 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:07:17 GMT" + "Mon, 24 Jul 2017 22:45:22 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1197" ], "x-ms-request-id": [ - "c2c59780-4052-4bb8-9656-5e6ae887b930" + "30dc6be6-ecd5-4e22-a5bc-4a17046dff03" ], "x-ms-correlation-request-id": [ - "c2c59780-4052-4bb8-9656-5e6ae887b930" + "30dc6be6-ecd5-4e22-a5bc-4a17046dff03" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180718Z:c2c59780-4052-4bb8-9656-5e6ae887b930" + "WESTUS2:20170724T224522Z:30dc6be6-ecd5-4e22-a5bc-4a17046dff03" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -394,22 +401,23 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13083/providers/Microsoft.DataLakeStore/accounts/testadlfs19631?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzA4My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTk2MzE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg13016/providers/Microsoft.DataLakeStore/accounts/testadlfs13129?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzAxNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTMxMjk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "24ad375d-1257-42bd-83d7-0d64ccc98da2" + "e80be882-d404-4062-85d1-650735129744" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs13129' under resource group 'datalakerg13016' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "166" @@ -424,7 +432,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:07:18 GMT" + "Mon, 24 Jul 2017 22:45:21 GMT" ], "Pragma": [ "no-cache" @@ -433,13 +441,13 @@ "gateway" ], "x-ms-request-id": [ - "6f1cce1b-7b4b-42ec-8890-176ad2a2871e" + "21905a77-28a5-4a7c-a970-dc4b7e49349a" ], "x-ms-correlation-request-id": [ - "6f1cce1b-7b4b-42ec-8890-176ad2a2871e" + "21905a77-28a5-4a7c-a970-dc4b7e49349a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180718Z:6f1cce1b-7b4b-42ec-8890-176ad2a2871e" + "WESTUS2:20170724T224522Z:21905a77-28a5-4a7c-a970-dc4b7e49349a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -448,16 +456,17 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13083/providers/Microsoft.DataLakeStore/accounts/testadlfs19631?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzA4My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTk2MzE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg13016/providers/Microsoft.DataLakeStore/accounts/testadlfs13129?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzAxNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTMxMjk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"testadlfs13129.azuredatalakestore.net\",\r\n \"accountId\": \"40a3b0f8-ec78-41cb-b544-3910fd89b929\",\r\n \"creationTime\": \"2017-07-24T22:45:25.2645982Z\",\r\n \"lastModifiedTime\": \"2017-07-24T22:45:25.2645982Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg13016/providers/Microsoft.DataLakeStore/accounts/testadlfs13129\",\r\n \"name\": \"testadlfs13129\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -472,7 +481,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:07:51 GMT" + "Mon, 24 Jul 2017 22:45:57 GMT" ], "Pragma": [ "no-cache" @@ -484,7 +493,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "438d7e0e-2302-43d7-a566-658f096f0c52" + "97d673f8-a248-4741-8cb8-d2d458139ba2" ], "X-Content-Type-Options": [ "nosniff" @@ -496,13 +505,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14985" ], "x-ms-correlation-request-id": [ - "8683040e-3bc1-4857-a66e-13fe2b57aadd" + "45790db2-28bb-4788-b7c7-fe72598cb7e4" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180751Z:8683040e-3bc1-4857-a66e-13fe2b57aadd" + "WESTUS2:20170724T224557Z:45790db2-28bb-4788-b7c7-fe72598cb7e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -511,22 +520,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13083/providers/Microsoft.DataLakeStore/accounts/testadlfs19631?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzA4My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTk2MzE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg13016/providers/Microsoft.DataLakeStore/accounts/testadlfs13129?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzAxNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTMxMjk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "68256672-320c-4fbe-9ac4-c6ed5b4ceb2b" + "165a3e4b-178b-412d-8042-a126a2fa9e36" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"testadlfs13129.azuredatalakestore.net\",\r\n \"accountId\": \"40a3b0f8-ec78-41cb-b544-3910fd89b929\",\r\n \"creationTime\": \"2017-07-24T22:45:25.2645982Z\",\r\n \"lastModifiedTime\": \"2017-07-24T22:45:25.2645982Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg13016/providers/Microsoft.DataLakeStore/accounts/testadlfs13129\",\r\n \"name\": \"testadlfs13129\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -541,7 +551,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:07:51 GMT" + "Mon, 24 Jul 2017 22:45:58 GMT" ], "Pragma": [ "no-cache" @@ -553,7 +563,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e5b791f8-214c-494b-b17e-149780026dc4" + "8a7a6f88-ab58-416f-8e3f-44930a331947" ], "X-Content-Type-Options": [ "nosniff" @@ -565,13 +575,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14954" ], "x-ms-correlation-request-id": [ - "e6d92b49-fcd9-4275-823d-5dadd3e4874e" + "5dc29673-3def-4c0b-a0b9-b8428b073ca5" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180752Z:e6d92b49-fcd9-4275-823d-5dadd3e4874e" + "WESTUS2:20170724T224558Z:5dc29673-3def-4c0b-a0b9-b8428b073ca5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -580,8 +590,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13083/providers/Microsoft.DataLakeStore/accounts/testadlfs19631?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzA4My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTk2MzE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg13016/providers/Microsoft.DataLakeStore/accounts/testadlfs13129?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzAxNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTMxMjk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -592,16 +602,17 @@ "31" ], "x-ms-client-request-id": [ - "6aeef5a5-394b-4c98-8146-1ba5117d24b4" + "976e4a84-4f4c-4743-a4cd-e9b80a76621d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"40a3b0f8-ec78-41cb-b544-3910fd89b929\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg13016/providers/Microsoft.DataLakeStore/accounts/testadlfs13129\",\r\n \"name\": \"testadlfs13129\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "420" @@ -619,13 +630,13 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:07:20 GMT" + "Mon, 24 Jul 2017 22:45:25 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13083/providers/Microsoft.DataLakeStore/accounts/testadlfs19631/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg13016/providers/Microsoft.DataLakeStore/accounts/testadlfs13129/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -634,10 +645,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "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" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/40a3b0f8-ec78-41cb-b544-3910fd89b9290?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "0ba81da1-2d10-4aed-9ae6-40e2c6ed160a" + "77c74d22-e6c8-493d-930a-120855b6d26b" ], "X-Content-Type-Options": [ "nosniff" @@ -649,13 +660,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1195" ], "x-ms-correlation-request-id": [ - "66f53b23-efa0-4401-8354-6fe936d00f61" + "ec2cb85f-8ea6-4805-b730-ca567a7170b0" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180720Z:66f53b23-efa0-4401-8354-6fe936d00f61" + "WESTUS2:20170724T224525Z:ec2cb85f-8ea6-4805-b730-ca567a7170b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -664,13 +675,14 @@ "StatusCode": 201 }, { - "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", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/40a3b0f8-ec78-41cb-b544-3910fd89b9290?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzQwYTNiMGY4LWVjNzgtNDFjYi1iNTQ0LTM5MTBmZDg5YjkyOTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -688,7 +700,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:07:50 GMT" + "Mon, 24 Jul 2017 22:45:56 GMT" ], "Pragma": [ "no-cache" @@ -700,7 +712,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "60a82dc8-a1ff-4ca1-ad10-a7729f4b84d7" + "aba6ce19-007c-4226-a255-83130192d6ca" ], "X-Content-Type-Options": [ "nosniff" @@ -712,13 +724,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14983" ], "x-ms-correlation-request-id": [ - "c3c5cdca-e6c3-4938-bd4e-debcdde8fae3" + "6a30f204-4c62-4b8a-afd7-e7d97ebaf6e7" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180751Z:c3c5cdca-e6c3-4938-bd4e-debcdde8fae3" + "WESTUS2:20170724T224556Z:6a30f204-4c62-4b8a-afd7-e7d97ebaf6e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -727,19 +739,20 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder015154?op=MKDIRS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNTE1ND9vcD1NS0RJUlMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder012202?op=MKDIRS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMjIwMj9vcD1NS0RJUlMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "00209ee8-c4f3-405a-9a82-0f12f26d9d4d" + "e5e35c4d-25c9-49ab-8855-01bd9fb823f7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "{\r\n \"boolean\": true\r\n}", @@ -757,16 +770,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:08:00 GMT" + "Mon, 24 Jul 2017 22:46:01 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "d301374c-ee54-4bb2-a6ef-59fb4884ef9a" + "891adb83-2c79-4b61-acb8-e243e6c6320e" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -781,22 +794,23 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder015154?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNTE1ND9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder012202?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMjIwMj9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3284fded-25c1-4a76-9702-0d3bcdd66c64" + "588949be-65de-44b5-90c1-aeada285baf3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"DIRECTORY\",\r\n \"blockSize\": 0,\r\n \"accessTime\": 1500936362086,\r\n \"modificationTime\": 1500936362086,\r\n \"replication\": 0,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "280" @@ -811,16 +825,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:08:00 GMT" + "Mon, 24 Jul 2017 22:46:01 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "77ad9f9c-c8da-4191-8ad2-c9f5859a1029" + "4ec256f9-3136-4d6a-a445-8bc2b4e96e80" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -837,15 +851,15 @@ ], "Names": { ".ctor": [ - "datalakerg13083", - "testdatalake15290", - "testadlfs19631" + "datalakerg13016", + "testdatalake1413", + "testadlfs13129" ], "CreateFolder": [ - "SDKTestFolder015154" + "SDKTestFolder012202" ] }, "Variables": { - "SubscriptionId": "53d9063d-87ae-4ea8-be90-3686c3b8669f" + "SubscriptionId": "04319d6d-4a66-4701-bb2f-e7dbbd9ae4db" } } \ No newline at end of file diff --git a/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemGetAcl.json b/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemGetAcl.json index 76304a9a672d..818db489cadf 100644 --- a/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemGetAcl.json +++ b/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemGetAcl.json @@ -1,22 +1,23 @@ { "Entries": [ { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8e8f8b5b-0a3e-486a-9568-64a3c323db44" + "7ebe82ca-a9cf-47cf-bf8a-132d41866015" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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" @@ -28,7 +29,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:15:55 GMT" + "Mon, 24 Jul 2017 22:52:30 GMT" ], "Pragma": [ "no-cache" @@ -40,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1196" ], "x-ms-request-id": [ - "d930a750-95c0-4623-b634-f78d4867fe61" + "8bc21858-8a8c-4789-8e4e-29d58cffe236" ], "x-ms-correlation-request-id": [ - "d930a750-95c0-4623-b634-f78d4867fe61" + "8bc21858-8a8c-4789-8e4e-29d58cffe236" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181556Z:d930a750-95c0-4623-b634-f78d4867fe61" + "WESTUS2:20170724T225231Z:8bc21858-8a8c-4789-8e4e-29d58cffe236" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -58,22 +59,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "24c605f1-b081-4d54-a15c-a5c7ea3baba5" + "b1d7e4f3-d0af-4ad3-a504-218d25e785c0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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" @@ -85,7 +87,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:15:55 GMT" + "Mon, 24 Jul 2017 22:52:30 GMT" ], "Pragma": [ "no-cache" @@ -94,16 +96,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14982" ], "x-ms-request-id": [ - "8dcee9f9-1b9b-48bb-b02c-b7ddb40a3a36" + "4ed6193f-bdef-4331-a533-a52b13282d28" ], "x-ms-correlation-request-id": [ - "8dcee9f9-1b9b-48bb-b02c-b7ddb40a3a36" + "4ed6193f-bdef-4331-a533-a52b13282d28" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181556Z:8dcee9f9-1b9b-48bb-b02c-b7ddb40a3a36" + "WESTUS2:20170724T225231Z:4ed6193f-bdef-4331-a533-a52b13282d28" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -112,22 +114,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "40d4dbc2-11eb-47c4-8037-4a7336970c81" + "67f99a93-658a-4293-ab93-1ea392297896" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/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 \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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 \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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,7 +142,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:15:56 GMT" + "Mon, 24 Jul 2017 22:52:32 GMT" ], "Pragma": [ "no-cache" @@ -151,16 +154,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1195" ], "x-ms-request-id": [ - "829574b2-c853-428d-90fc-5463b3c994da" + "7d50bcf6-3557-4aac-b0eb-c60bd25c2ba1" ], "x-ms-correlation-request-id": [ - "829574b2-c853-428d-90fc-5463b3c994da" + "7d50bcf6-3557-4aac-b0eb-c60bd25c2ba1" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181557Z:829574b2-c853-428d-90fc-5463b3c994da" + "WESTUS2:20170724T225232Z:7d50bcf6-3557-4aac-b0eb-c60bd25c2ba1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -169,22 +172,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "97c2830e-7b3d-4213-a7a0-5cfd423fb052" + "b185ff8d-5ba2-45a1-b773-dda2479fe100" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/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 \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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 \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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" @@ -196,7 +200,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:15:56 GMT" + "Mon, 24 Jul 2017 22:52:32 GMT" ], "Pragma": [ "no-cache" @@ -205,16 +209,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14981" ], "x-ms-request-id": [ - "93dc8001-77f6-45f5-8094-95c013ae7fa4" + "c894bab9-a526-49a6-aec1-ffe3b7fb6b05" ], "x-ms-correlation-request-id": [ - "93dc8001-77f6-45f5-8094-95c013ae7fa4" + "c894bab9-a526-49a6-aec1-ffe3b7fb6b05" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181557Z:93dc8001-77f6-45f5-8094-95c013ae7fa4" + "WESTUS2:20170724T225232Z:c894bab9-a526-49a6-aec1-ffe3b7fb6b05" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -223,22 +227,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14527?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNDUyNz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg12096?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMjA5Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5278b31b-abb6-45e8-8666-edde6a5060f0" + "8a609db4-6ddb-48c4-bec9-ab2179bfd259" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg14527' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg12096' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -253,7 +258,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:15:56 GMT" + "Mon, 24 Jul 2017 22:52:32 GMT" ], "Pragma": [ "no-cache" @@ -262,16 +267,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14980" ], "x-ms-request-id": [ - "25e74920-eadb-4f23-b9d8-8456cd944f96" + "6ca25777-dc37-4e94-99cc-abdc0b96ee95" ], "x-ms-correlation-request-id": [ - "25e74920-eadb-4f23-b9d8-8456cd944f96" + "6ca25777-dc37-4e94-99cc-abdc0b96ee95" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181557Z:25e74920-eadb-4f23-b9d8-8456cd944f96" + "WESTUS2:20170724T225232Z:6ca25777-dc37-4e94-99cc-abdc0b96ee95" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -280,22 +285,23 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14527?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNDUyNz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg12096?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMjA5Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "009863ae-fe7e-476e-853c-caca703e1cd3" + "c592ae4d-6478-4cb7-acf5-0c04b458d5c8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg12096\",\r\n \"name\": \"datalakerg12096\",\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 +313,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:15:58 GMT" + "Mon, 24 Jul 2017 22:52:33 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +322,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14979" ], "x-ms-request-id": [ - "758bcf4c-6994-4a8b-babc-5ba84d524fee" + "4f1977cc-cb13-4fc2-8a14-826eced3cc7f" ], "x-ms-correlation-request-id": [ - "758bcf4c-6994-4a8b-babc-5ba84d524fee" + "4f1977cc-cb13-4fc2-8a14-826eced3cc7f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181558Z:758bcf4c-6994-4a8b-babc-5ba84d524fee" + "WESTUS2:20170724T225233Z:4f1977cc-cb13-4fc2-8a14-826eced3cc7f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +340,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14527?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNDUyNz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg12096?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMjA5Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,16 +352,17 @@ "31" ], "x-ms-client-request-id": [ - "1704fcb8-73c3-4333-b454-3a8f760229e9" + "134019bc-92e3-4aa8-8415-9430444af989" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg12096\",\r\n \"name\": \"datalakerg12096\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -370,22 +377,22 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:15:58 GMT" + "Mon, 24 Jul 2017 22:52:33 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1194" ], "x-ms-request-id": [ - "2e330e09-c1b7-4721-98cf-0ced12d6c064" + "62993b72-7ac0-4212-a264-7ca16ddc52ad" ], "x-ms-correlation-request-id": [ - "2e330e09-c1b7-4721-98cf-0ced12d6c064" + "62993b72-7ac0-4212-a264-7ca16ddc52ad" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181558Z:2e330e09-c1b7-4721-98cf-0ced12d6c064" + "WESTUS2:20170724T225233Z:62993b72-7ac0-4212-a264-7ca16ddc52ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -394,22 +401,23 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14527/providers/Microsoft.DataLakeStore/accounts/testadlfs17001?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDUyNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTcwMDE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg12096/providers/Microsoft.DataLakeStore/accounts/testadlfs11846?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMjA5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE4NDY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f8f066da-7f05-40e1-b07a-2e8ada13903c" + "fc1b7e0b-0073-49a1-9673-2578996ff05d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs11846' under resource group 'datalakerg12096' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "166" @@ -424,7 +432,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:15:58 GMT" + "Mon, 24 Jul 2017 22:52:33 GMT" ], "Pragma": [ "no-cache" @@ -433,13 +441,13 @@ "gateway" ], "x-ms-request-id": [ - "63fa7a75-bc9a-409c-88a7-aa0f6b8afb01" + "2f37f669-c43f-4170-a107-b3c65b6c81d0" ], "x-ms-correlation-request-id": [ - "63fa7a75-bc9a-409c-88a7-aa0f6b8afb01" + "2f37f669-c43f-4170-a107-b3c65b6c81d0" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181559Z:63fa7a75-bc9a-409c-88a7-aa0f6b8afb01" + "WESTUS2:20170724T225234Z:2f37f669-c43f-4170-a107-b3c65b6c81d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -448,16 +456,17 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14527/providers/Microsoft.DataLakeStore/accounts/testadlfs17001?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDUyNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTcwMDE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg12096/providers/Microsoft.DataLakeStore/accounts/testadlfs11846?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMjA5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE4NDY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"testadlfs11846.azuredatalakestore.net\",\r\n \"accountId\": \"170495b4-cea1-489b-8caa-7d32eae29c6a\",\r\n \"creationTime\": \"2017-07-24T22:52:37.4822029Z\",\r\n \"lastModifiedTime\": \"2017-07-24T22:52:37.4822029Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg12096/providers/Microsoft.DataLakeStore/accounts/testadlfs11846\",\r\n \"name\": \"testadlfs11846\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -472,7 +481,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:16:31 GMT" + "Mon, 24 Jul 2017 22:53:07 GMT" ], "Pragma": [ "no-cache" @@ -484,7 +493,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "a16ee601-9def-494c-a888-0ce74a7654ff" + "fc54c710-f8b1-4664-a0b6-826faf856265" ], "X-Content-Type-Options": [ "nosniff" @@ -496,13 +505,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14894" ], "x-ms-correlation-request-id": [ - "1ab99c60-10a4-49c9-ab37-925a6d4ad543" + "9d194ddc-938a-491f-9eb9-3c8de1772126" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181632Z:1ab99c60-10a4-49c9-ab37-925a6d4ad543" + "WESTUS2:20170724T225307Z:9d194ddc-938a-491f-9eb9-3c8de1772126" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -511,22 +520,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14527/providers/Microsoft.DataLakeStore/accounts/testadlfs17001?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDUyNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTcwMDE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg12096/providers/Microsoft.DataLakeStore/accounts/testadlfs11846?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMjA5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE4NDY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fb4137ee-d95c-456c-a15e-f78845142a4a" + "cb1681b0-b825-4e19-88a1-c5f4c4d6d879" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"testadlfs11846.azuredatalakestore.net\",\r\n \"accountId\": \"170495b4-cea1-489b-8caa-7d32eae29c6a\",\r\n \"creationTime\": \"2017-07-24T22:52:37.4822029Z\",\r\n \"lastModifiedTime\": \"2017-07-24T22:52:37.4822029Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg12096/providers/Microsoft.DataLakeStore/accounts/testadlfs11846\",\r\n \"name\": \"testadlfs11846\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -541,7 +551,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:16:32 GMT" + "Mon, 24 Jul 2017 22:53:08 GMT" ], "Pragma": [ "no-cache" @@ -553,7 +563,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "c4bd9baa-2527-48f5-9232-e1d2332b0cfd" + "fccf932a-2fc0-4029-b906-a717f5295c47" ], "X-Content-Type-Options": [ "nosniff" @@ -565,13 +575,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14985" ], "x-ms-correlation-request-id": [ - "e6660439-9762-4eae-a059-411e08e7e010" + "8494efa4-39a9-4e34-9978-e38f2f8c5031" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181632Z:e6660439-9762-4eae-a059-411e08e7e010" + "WESTUS2:20170724T225308Z:8494efa4-39a9-4e34-9978-e38f2f8c5031" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -580,8 +590,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14527/providers/Microsoft.DataLakeStore/accounts/testadlfs17001?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDUyNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTcwMDE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg12096/providers/Microsoft.DataLakeStore/accounts/testadlfs11846?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMjA5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE4NDY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -592,16 +602,17 @@ "31" ], "x-ms-client-request-id": [ - "5c0d3cf4-20cc-412d-a8fa-3de055e3074a" + "aff678ca-0dcd-4011-a0af-8f43bb0206b2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"170495b4-cea1-489b-8caa-7d32eae29c6a\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg12096/providers/Microsoft.DataLakeStore/accounts/testadlfs11846\",\r\n \"name\": \"testadlfs11846\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "420" @@ -619,13 +630,13 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:16:00 GMT" + "Mon, 24 Jul 2017 22:52:35 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14527/providers/Microsoft.DataLakeStore/accounts/testadlfs17001/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg12096/providers/Microsoft.DataLakeStore/accounts/testadlfs11846/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -634,10 +645,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "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" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/170495b4-cea1-489b-8caa-7d32eae29c6a0?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "069dab42-9943-4367-9520-604bfa1c5cc1" + "4b261fba-1648-4c3d-a7f5-e92175a68112" ], "X-Content-Type-Options": [ "nosniff" @@ -652,10 +663,10 @@ "1194" ], "x-ms-correlation-request-id": [ - "e6f6d3f0-3649-4d97-9a9d-f00c8e11123b" + "0a94cc7d-6297-4cfa-a234-6aa260446062" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181601Z:e6f6d3f0-3649-4d97-9a9d-f00c8e11123b" + "WESTUS2:20170724T225236Z:0a94cc7d-6297-4cfa-a234-6aa260446062" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -664,13 +675,14 @@ "StatusCode": 201 }, { - "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", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/170495b4-cea1-489b-8caa-7d32eae29c6a0?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzE3MDQ5NWI0LWNlYTEtNDg5Yi04Y2FhLTdkMzJlYWUyOWM2YTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -688,7 +700,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:16:30 GMT" + "Mon, 24 Jul 2017 22:53:06 GMT" ], "Pragma": [ "no-cache" @@ -700,7 +712,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "98ff12e2-5088-4bcb-9d91-a8850644988b" + "ea864baf-4068-4989-8b6c-53bdbe685203" ], "X-Content-Type-Options": [ "nosniff" @@ -712,13 +724,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14982" ], "x-ms-correlation-request-id": [ - "d6ce0104-48a8-46a7-b19a-b64f25e13eb6" + "fead7536-f89d-4dc0-bbea-e2e8ea0adae4" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181631Z:d6ce0104-48a8-46a7-b19a-b64f25e13eb6" + "WESTUS2:20170724T225307Z:fead7536-f89d-4dc0-bbea-e2e8ea0adae4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,16 +745,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3573bb4d-af4b-4478-8483-6571a6c71f76" + "460a2130-2240-488c-ae34-052d11a6f758" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"AclStatus\": {\r\n \"entries\": [\r\n \"group::rwx\"\r\n ],\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"770\",\r\n \"stickyBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "171" @@ -757,16 +770,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:16:33 GMT" + "Mon, 24 Jul 2017 22:53:11 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "cba65d51-6698-4146-9423-1576cdca309b" + "ff4e966c-4815-40c5-a036-13f7a88f6d97" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -783,12 +796,12 @@ ], "Names": { ".ctor": [ - "datalakerg14527", - "testdatalake1594", - "testadlfs17001" + "datalakerg12096", + "testdatalake14282", + "testadlfs11846" ] }, "Variables": { - "SubscriptionId": "53d9063d-87ae-4ea8-be90-3686c3b8669f" + "SubscriptionId": "04319d6d-4a66-4701-bb2f-e7dbbd9ae4db" } } \ No newline at end of file diff --git a/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemGetAndSetAcl.json b/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemGetAndSetAcl.json index a6eaaac692ad..2f1c3cfc7b83 100644 --- a/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemGetAndSetAcl.json +++ b/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemGetAndSetAcl.json @@ -1,22 +1,23 @@ { "Entries": [ { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "477a69bf-b6a0-426b-984a-f408adef1905" + "3c0555d1-3632-4e2e-b7f5-6157656ccd3a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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" @@ -28,7 +29,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 19:08:27 GMT" + "Mon, 24 Jul 2017 22:53:35 GMT" ], "Pragma": [ "no-cache" @@ -40,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1195" ], "x-ms-request-id": [ - "6bd571da-eed2-4a08-8a2a-83f712d4b06b" + "c627a3ed-5668-4484-b277-b1fc3affe10d" ], "x-ms-correlation-request-id": [ - "6bd571da-eed2-4a08-8a2a-83f712d4b06b" + "c627a3ed-5668-4484-b277-b1fc3affe10d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T190828Z:6bd571da-eed2-4a08-8a2a-83f712d4b06b" + "WESTUS2:20170724T225335Z:c627a3ed-5668-4484-b277-b1fc3affe10d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -58,22 +59,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "450da46c-4212-494c-b77b-ea0db86b9200" + "77171b35-550d-4b08-87bc-2b460c0f7ff6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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" @@ -85,7 +87,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 19:08:27 GMT" + "Mon, 24 Jul 2017 22:53:35 GMT" ], "Pragma": [ "no-cache" @@ -94,16 +96,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14981" ], "x-ms-request-id": [ - "6610abb0-4124-461b-a0e0-ece2741244b6" + "1cd2b4f8-a3ae-44ec-a599-9d8e8b70d871" ], "x-ms-correlation-request-id": [ - "6610abb0-4124-461b-a0e0-ece2741244b6" + "1cd2b4f8-a3ae-44ec-a599-9d8e8b70d871" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T190828Z:6610abb0-4124-461b-a0e0-ece2741244b6" + "WESTUS2:20170724T225336Z:1cd2b4f8-a3ae-44ec-a599-9d8e8b70d871" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -112,22 +114,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3d6a0562-4911-4ddb-9e37-ed87446b4c95" + "ea47eef6-fb12-4589-9342-9dc9c2d97d53" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/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 \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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 \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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,7 +142,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 19:08:28 GMT" + "Mon, 24 Jul 2017 22:53:36 GMT" ], "Pragma": [ "no-cache" @@ -151,16 +154,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1194" ], "x-ms-request-id": [ - "38f4799c-66c2-40de-9abd-2a9457bb8c37" + "357e8208-d0f8-4811-9d8f-8c10153fb657" ], "x-ms-correlation-request-id": [ - "38f4799c-66c2-40de-9abd-2a9457bb8c37" + "357e8208-d0f8-4811-9d8f-8c10153fb657" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T190829Z:38f4799c-66c2-40de-9abd-2a9457bb8c37" + "WESTUS2:20170724T225337Z:357e8208-d0f8-4811-9d8f-8c10153fb657" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -169,22 +172,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "195bc808-9977-419c-bef6-b2b222fc4d06" + "cfe13613-85ce-4cc5-84c2-ec4f1b97863d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/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 \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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 \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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" @@ -196,7 +200,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 19:08:28 GMT" + "Mon, 24 Jul 2017 22:53:37 GMT" ], "Pragma": [ "no-cache" @@ -205,16 +209,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14980" ], "x-ms-request-id": [ - "d6c02bad-696e-43cb-b18d-0cfa5eb7ebed" + "acf419fe-b5b2-4c4b-a394-c25500ee309b" ], "x-ms-correlation-request-id": [ - "d6c02bad-696e-43cb-b18d-0cfa5eb7ebed" + "acf419fe-b5b2-4c4b-a394-c25500ee309b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T190829Z:d6c02bad-696e-43cb-b18d-0cfa5eb7ebed" + "WESTUS2:20170724T225337Z:acf419fe-b5b2-4c4b-a394-c25500ee309b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -223,22 +227,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg16813?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNjgxMz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg11347?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTM0Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bc18231d-ba09-423e-b5c5-2f4569e27382" + "5d052bd0-6ba6-471f-8023-d61a923fb550" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg16813' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg11347' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -253,7 +258,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 19:08:28 GMT" + "Mon, 24 Jul 2017 22:53:37 GMT" ], "Pragma": [ "no-cache" @@ -262,16 +267,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14979" ], "x-ms-request-id": [ - "fe0cdc10-e254-4cd6-aab7-fa785d043e13" + "7fba38ee-44a3-4085-9e10-24557a9049b1" ], "x-ms-correlation-request-id": [ - "fe0cdc10-e254-4cd6-aab7-fa785d043e13" + "7fba38ee-44a3-4085-9e10-24557a9049b1" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T190829Z:fe0cdc10-e254-4cd6-aab7-fa785d043e13" + "WESTUS2:20170724T225337Z:7fba38ee-44a3-4085-9e10-24557a9049b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -280,22 +285,23 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg16813?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNjgxMz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg11347?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTM0Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ba18318-70b5-4dd6-b69a-5e5d75277f91" + "e14926b6-a0c9-416e-a83d-d9d0a0e6e3e0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg11347\",\r\n \"name\": \"datalakerg11347\",\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 +313,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 19:08:29 GMT" + "Mon, 24 Jul 2017 22:53:38 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +322,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14978" ], "x-ms-request-id": [ - "0e748bd8-1e29-4e8c-b5db-0e2e8609b1c7" + "e722a418-91da-4e98-a760-4be1218b5594" ], "x-ms-correlation-request-id": [ - "0e748bd8-1e29-4e8c-b5db-0e2e8609b1c7" + "e722a418-91da-4e98-a760-4be1218b5594" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T190829Z:0e748bd8-1e29-4e8c-b5db-0e2e8609b1c7" + "WESTUS2:20170724T225338Z:e722a418-91da-4e98-a760-4be1218b5594" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +340,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg16813?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNjgxMz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg11347?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTM0Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,16 +352,17 @@ "31" ], "x-ms-client-request-id": [ - "97fcc17d-d30e-4630-9bac-c459f5830f8a" + "7f019a6e-1483-40a6-928b-abc758f48d63" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg11347\",\r\n \"name\": \"datalakerg11347\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -370,22 +377,22 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 19:08:29 GMT" + "Mon, 24 Jul 2017 22:53:38 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1193" ], "x-ms-request-id": [ - "cf98c0e6-e10e-4484-81e2-477d028bd966" + "639bc36a-1b4a-476b-b7fd-5d9bf1a23098" ], "x-ms-correlation-request-id": [ - "cf98c0e6-e10e-4484-81e2-477d028bd966" + "639bc36a-1b4a-476b-b7fd-5d9bf1a23098" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T190829Z:cf98c0e6-e10e-4484-81e2-477d028bd966" + "WESTUS2:20170724T225338Z:639bc36a-1b4a-476b-b7fd-5d9bf1a23098" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -394,22 +401,23 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16813/providers/Microsoft.DataLakeStore/accounts/testadlfs19862?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjgxMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTk4NjI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg11347/providers/Microsoft.DataLakeStore/accounts/testadlfs12337?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTM0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTIzMzc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fc08974-041d-4959-bea2-44358ff4b2e0" + "ccbda714-0270-4def-bfa6-61a8fc6b0c24" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs12337' under resource group 'datalakerg11347' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "166" @@ -424,7 +432,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 19:08:29 GMT" + "Mon, 24 Jul 2017 22:53:38 GMT" ], "Pragma": [ "no-cache" @@ -433,13 +441,13 @@ "gateway" ], "x-ms-request-id": [ - "86f78131-ce9c-47af-a6b2-3ed436809410" + "2bc594f5-260c-48d4-bb1c-32810dd9bc96" ], "x-ms-correlation-request-id": [ - "86f78131-ce9c-47af-a6b2-3ed436809410" + "2bc594f5-260c-48d4-bb1c-32810dd9bc96" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T190830Z:86f78131-ce9c-47af-a6b2-3ed436809410" + "WESTUS2:20170724T225339Z:2bc594f5-260c-48d4-bb1c-32810dd9bc96" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -448,16 +456,17 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16813/providers/Microsoft.DataLakeStore/accounts/testadlfs19862?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjgxMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTk4NjI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg11347/providers/Microsoft.DataLakeStore/accounts/testadlfs12337?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTM0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTIzMzc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"testadlfs12337.azuredatalakestore.net\",\r\n \"accountId\": \"4944ad1c-c97e-43c7-bc34-26557e1ac9ad\",\r\n \"creationTime\": \"2017-07-24T22:53:41.6916495Z\",\r\n \"lastModifiedTime\": \"2017-07-24T22:53:41.6916495Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg11347/providers/Microsoft.DataLakeStore/accounts/testadlfs12337\",\r\n \"name\": \"testadlfs12337\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -472,7 +481,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 19:09:03 GMT" + "Mon, 24 Jul 2017 22:54:12 GMT" ], "Pragma": [ "no-cache" @@ -484,7 +493,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "f3c4094d-6eb0-4036-baf4-0773d18b62e2" + "a235a624-ee47-423f-a21b-a191adab9d34" ], "X-Content-Type-Options": [ "nosniff" @@ -496,13 +505,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14984" ], "x-ms-correlation-request-id": [ - "cace3c4a-e32d-4cbc-93fb-6351f72c03d9" + "76c8771c-4cee-411f-916a-775833bd0577" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T190903Z:cace3c4a-e32d-4cbc-93fb-6351f72c03d9" + "WESTUS2:20170724T225413Z:76c8771c-4cee-411f-916a-775833bd0577" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -511,22 +520,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16813/providers/Microsoft.DataLakeStore/accounts/testadlfs19862?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjgxMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTk4NjI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg11347/providers/Microsoft.DataLakeStore/accounts/testadlfs12337?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTM0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTIzMzc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2f47024b-43c2-4a57-b9ef-e12612c8b778" + "19ee91f3-045f-4f94-bdd7-b805f222a220" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"testadlfs12337.azuredatalakestore.net\",\r\n \"accountId\": \"4944ad1c-c97e-43c7-bc34-26557e1ac9ad\",\r\n \"creationTime\": \"2017-07-24T22:53:41.6916495Z\",\r\n \"lastModifiedTime\": \"2017-07-24T22:53:41.6916495Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg11347/providers/Microsoft.DataLakeStore/accounts/testadlfs12337\",\r\n \"name\": \"testadlfs12337\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -541,7 +551,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 19:09:03 GMT" + "Mon, 24 Jul 2017 22:54:13 GMT" ], "Pragma": [ "no-cache" @@ -553,7 +563,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "9f3ad3da-c8e1-4b3a-9936-894caae751f3" + "7ea047a3-e723-4737-b008-6bd06b5a9ab9" ], "X-Content-Type-Options": [ "nosniff" @@ -565,13 +575,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14980" ], "x-ms-correlation-request-id": [ - "01fef869-e2a1-455d-b54b-e35137f50222" + "d006fd12-e9ee-4813-8a44-b2deb4a62105" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T190904Z:01fef869-e2a1-455d-b54b-e35137f50222" + "WESTUS2:20170724T225413Z:d006fd12-e9ee-4813-8a44-b2deb4a62105" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -580,8 +590,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16813/providers/Microsoft.DataLakeStore/accounts/testadlfs19862?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjgxMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTk4NjI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg11347/providers/Microsoft.DataLakeStore/accounts/testadlfs12337?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTM0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTIzMzc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -592,16 +602,17 @@ "31" ], "x-ms-client-request-id": [ - "f9207428-a58b-4635-8159-c8b1fbf0d5dd" + "b34e3bf4-6615-4d6e-9901-7dec8d0c7284" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"4944ad1c-c97e-43c7-bc34-26557e1ac9ad\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg11347/providers/Microsoft.DataLakeStore/accounts/testadlfs12337\",\r\n \"name\": \"testadlfs12337\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "420" @@ -619,13 +630,13 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 19:08:31 GMT" + "Mon, 24 Jul 2017 22:53:40 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg16813/providers/Microsoft.DataLakeStore/accounts/testadlfs19862/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg11347/providers/Microsoft.DataLakeStore/accounts/testadlfs12337/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -634,10 +645,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "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" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/4944ad1c-c97e-43c7-bc34-26557e1ac9ad0?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "ebf26751-1a2a-41c2-abd5-740b49908ebb" + "7ea408f9-52a2-4fe1-8b14-fa3820791cd9" ], "X-Content-Type-Options": [ "nosniff" @@ -649,13 +660,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1195" ], "x-ms-correlation-request-id": [ - "41ae4bcb-f9ea-4161-8451-6cfc598cb6e5" + "48ea40fc-eadd-4dfe-8bac-2fff6bc6e376" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T190832Z:41ae4bcb-f9ea-4161-8451-6cfc598cb6e5" + "WESTUS2:20170724T225341Z:48ea40fc-eadd-4dfe-8bac-2fff6bc6e376" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -664,13 +675,14 @@ "StatusCode": 201 }, { - "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", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/4944ad1c-c97e-43c7-bc34-26557e1ac9ad0?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzQ5NDRhZDFjLWM5N2UtNDNjNy1iYzM0LTI2NTU3ZTFhYzlhZDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -688,7 +700,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 19:09:02 GMT" + "Mon, 24 Jul 2017 22:54:10 GMT" ], "Pragma": [ "no-cache" @@ -700,7 +712,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "0afe3a77-e16d-4ee3-971c-eb1e518819bb" + "3b9cbe08-61b5-42a1-a6f8-84096009be41" ], "X-Content-Type-Options": [ "nosniff" @@ -712,13 +724,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14971" ], "x-ms-correlation-request-id": [ - "fb9be0c9-7386-4250-bc71-b1b1e9841e7f" + "c4bda938-ff28-4488-b861-e8ad9c4f0570" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T190902Z:fb9be0c9-7386-4250-bc71-b1b1e9841e7f" + "WESTUS2:20170724T225411Z:c4bda938-ff28-4488-b861-e8ad9c4f0570" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,16 +745,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f7fdb636-65ce-44fe-9b05-173bc50eb474" + "2de744ee-3403-4ba4-b030-c316b6eee822" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"AclStatus\": {\r\n \"entries\": [\r\n \"group::rwx\"\r\n ],\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"770\",\r\n \"stickyBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "171" @@ -757,16 +770,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 19:09:25 GMT" + "Mon, 24 Jul 2017 22:54:16 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "fc4556e4-0546-4815-910a-3781775902c5" + "88464808-d29f-43d8-9ebd-d6d6965b48a1" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -787,16 +800,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b3bf8c1b-e6b5-4159-ba61-e4eacc618dd7" + "8c82568a-4eb0-4e20-9d6d-611c30e64f27" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"AclStatus\": {\r\n \"entries\": [\r\n \"group::rwx\"\r\n ],\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"777\",\r\n \"stickyBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "171" @@ -811,16 +825,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 19:09:25 GMT" + "Mon, 24 Jul 2017 22:54:16 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "a0458e86-254d-43de-9112-0f3c562d712d" + "0c5879a6-4785-484c-979b-6275fddfaf20" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -841,16 +855,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "93b2c301-618c-4f92-a642-3cc21a87fe6b" + "9f471642-ad66-444d-a240-a92375a38486" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"AclStatus\": {\r\n \"entries\": [\r\n \"group::rwx\"\r\n ],\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"770\",\r\n \"stickyBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "171" @@ -865,16 +880,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 19:09:26 GMT" + "Mon, 24 Jul 2017 22:54:17 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "595b245b-d086-4018-8630-1cbafa649af7" + "dda53e70-7ed5-4e2a-98f0-64d4ba5191ad" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -895,13 +910,14 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f27a476d-f2c8-4ca4-abaa-32f9acb6fcf2" + "7620df0a-f574-4f24-a859-4d852aab1d22" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "", @@ -916,19 +932,19 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 19:09:25 GMT" + "Mon, 24 Jul 2017 22:54:16 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "a841cebe-2532-4a93-a542-abe89aef7eb9" + "9ca6a877-8efe-4666-9c3b-e990f6d46ffa" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -949,13 +965,14 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b888e981-a2b9-4442-a997-bbadc877b3b9" + "d276342e-113e-4bf5-8630-947afb7e1192" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "", @@ -970,16 +987,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 19:09:26 GMT" + "Mon, 24 Jul 2017 22:54:16 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "fccd979a-5cce-47a8-bd7e-11826508a087" + "1dc3fc15-9092-40d0-b393-1805293e6cce" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -1000,13 +1017,14 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2fc5c853-adc9-45d3-acba-d699ebb257b6" + "4fca4ba0-2a01-467a-a9b2-658f690eb945" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "", @@ -1021,19 +1039,19 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 19:09:26 GMT" + "Mon, 24 Jul 2017 22:54:16 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "be449077-e114-4dcf-a8f7-0b361ec33d20" + "14e6cf91-c42b-4ef6-b04a-ae83a4d6b332" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -1050,12 +1068,12 @@ ], "Names": { ".ctor": [ - "datalakerg16813", - "testdatalake11315", - "testadlfs19862" + "datalakerg11347", + "testdatalake12502", + "testadlfs12337" ] }, "Variables": { - "SubscriptionId": "53d9063d-87ae-4ea8-be90-3686c3b8669f" + "SubscriptionId": "04319d6d-4a66-4701-bb2f-e7dbbd9ae4db" } } \ No newline at end of file diff --git a/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemGetContentSummaryForFileAndFolder.json b/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemGetContentSummaryForFileAndFolder.json index 1f9dfc9ded74..0b593c6efa25 100644 --- a/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemGetContentSummaryForFileAndFolder.json +++ b/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemGetContentSummaryForFileAndFolder.json @@ -1,22 +1,23 @@ { "Entries": [ { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5ac55dfe-7914-4e9c-bad8-f7ce0c66d98a" + "a92db8f2-912a-49b1-8968-c2cfe5b6b46a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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" @@ -28,7 +29,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:22:54 GMT" + "Mon, 24 Jul 2017 22:58:30 GMT" ], "Pragma": [ "no-cache" @@ -43,13 +44,13 @@ "1198" ], "x-ms-request-id": [ - "a8ed5ce5-1001-45a4-b549-c4aea84c4255" + "4a4f1835-4c9b-49dd-97c3-98cf5642202d" ], "x-ms-correlation-request-id": [ - "a8ed5ce5-1001-45a4-b549-c4aea84c4255" + "4a4f1835-4c9b-49dd-97c3-98cf5642202d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T182255Z:a8ed5ce5-1001-45a4-b549-c4aea84c4255" + "WESTUS:20170724T225831Z:4a4f1835-4c9b-49dd-97c3-98cf5642202d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -58,22 +59,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ebb6be0e-82af-46f8-859d-7f5262487ae0" + "76c76a31-22d2-466f-ad94-53bca3c51df2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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" @@ -85,7 +87,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:22:54 GMT" + "Mon, 24 Jul 2017 22:58:30 GMT" ], "Pragma": [ "no-cache" @@ -94,16 +96,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14873" ], "x-ms-request-id": [ - "61f07101-f069-44d3-937e-e4e4ab5d2965" + "48c388b3-747c-4edd-a912-8ce504da1ee2" ], "x-ms-correlation-request-id": [ - "61f07101-f069-44d3-937e-e4e4ab5d2965" + "48c388b3-747c-4edd-a912-8ce504da1ee2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T182255Z:61f07101-f069-44d3-937e-e4e4ab5d2965" + "WESTUS:20170724T225831Z:48c388b3-747c-4edd-a912-8ce504da1ee2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -112,22 +114,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d7cd0a7a-3eb9-4200-b5e9-e0483f2aa556" + "3b864a18-585c-4df9-9193-27b521f5aabf" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/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 \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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 \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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,7 +142,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:22:55 GMT" + "Mon, 24 Jul 2017 22:58:32 GMT" ], "Pragma": [ "no-cache" @@ -154,13 +157,13 @@ "1197" ], "x-ms-request-id": [ - "66e967cc-48d0-477d-bf43-3fe3fe642572" + "7bd4dd3a-3759-44b8-9f4f-d1f9600dc9fc" ], "x-ms-correlation-request-id": [ - "66e967cc-48d0-477d-bf43-3fe3fe642572" + "7bd4dd3a-3759-44b8-9f4f-d1f9600dc9fc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T182256Z:66e967cc-48d0-477d-bf43-3fe3fe642572" + "WESTUS:20170724T225832Z:7bd4dd3a-3759-44b8-9f4f-d1f9600dc9fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -169,22 +172,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4860d8a3-6ea2-47a7-aa64-545958bd3765" + "6adb29c1-a424-4212-9e4e-2c12b0a0dd4f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/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 \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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 \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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" @@ -196,7 +200,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:22:55 GMT" + "Mon, 24 Jul 2017 22:58:33 GMT" ], "Pragma": [ "no-cache" @@ -205,16 +209,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14872" ], "x-ms-request-id": [ - "4799ddd2-ea12-41c3-ac90-57f65e9806ff" + "cdc74cda-5254-43ea-a395-cceb5e63ab35" ], "x-ms-correlation-request-id": [ - "4799ddd2-ea12-41c3-ac90-57f65e9806ff" + "cdc74cda-5254-43ea-a395-cceb5e63ab35" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T182256Z:4799ddd2-ea12-41c3-ac90-57f65e9806ff" + "WESTUS:20170724T225833Z:cdc74cda-5254-43ea-a395-cceb5e63ab35" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -223,22 +227,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13118?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzExOD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg14699?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNDY5OT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "271573d1-0da4-464d-a8f0-db0f531a6417" + "8865a23f-3909-4853-b046-0402e35bd39d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg13118' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg14699' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -253,7 +258,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:22:56 GMT" + "Mon, 24 Jul 2017 22:58:33 GMT" ], "Pragma": [ "no-cache" @@ -262,16 +267,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14871" ], "x-ms-request-id": [ - "264e11e2-1065-48d9-afae-17df6bf6aac6" + "7ec0c8c3-41f6-4c00-a253-1789fe6e3224" ], "x-ms-correlation-request-id": [ - "264e11e2-1065-48d9-afae-17df6bf6aac6" + "7ec0c8c3-41f6-4c00-a253-1789fe6e3224" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T182256Z:264e11e2-1065-48d9-afae-17df6bf6aac6" + "WESTUS:20170724T225833Z:7ec0c8c3-41f6-4c00-a253-1789fe6e3224" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -280,22 +285,23 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13118?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzExOD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg14699?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNDY5OT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d6b52003-3cb6-4b1b-9067-7514b70a795b" + "ab0387b5-75f2-44ee-842b-806bf3951969" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg14699\",\r\n \"name\": \"datalakerg14699\",\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 +313,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:22:57 GMT" + "Mon, 24 Jul 2017 22:58:34 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +322,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14870" ], "x-ms-request-id": [ - "50962f96-8a50-414e-be5c-8cb2b26722a2" + "495b4366-0fc9-4d8f-a92e-f2d94bbac4a2" ], "x-ms-correlation-request-id": [ - "50962f96-8a50-414e-be5c-8cb2b26722a2" + "495b4366-0fc9-4d8f-a92e-f2d94bbac4a2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T182257Z:50962f96-8a50-414e-be5c-8cb2b26722a2" + "WESTUS:20170724T225834Z:495b4366-0fc9-4d8f-a92e-f2d94bbac4a2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +340,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13118?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzExOD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg14699?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNDY5OT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,16 +352,17 @@ "31" ], "x-ms-client-request-id": [ - "26c7a801-a82b-4db6-a20f-d1bbeed660d9" + "d56351aa-f052-42f3-ad6d-b73ae6a32dc6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg14699\",\r\n \"name\": \"datalakerg14699\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -370,7 +377,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:22:57 GMT" + "Mon, 24 Jul 2017 22:58:34 GMT" ], "Pragma": [ "no-cache" @@ -379,13 +386,13 @@ "1196" ], "x-ms-request-id": [ - "5d1a2ab1-c6aa-417d-9f4e-05ee7c1f6c8c" + "fbdba0db-6a7d-407a-a6b5-dcdc5c2366ae" ], "x-ms-correlation-request-id": [ - "5d1a2ab1-c6aa-417d-9f4e-05ee7c1f6c8c" + "fbdba0db-6a7d-407a-a6b5-dcdc5c2366ae" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T182257Z:5d1a2ab1-c6aa-417d-9f4e-05ee7c1f6c8c" + "WESTUS:20170724T225834Z:fbdba0db-6a7d-407a-a6b5-dcdc5c2366ae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -394,22 +401,23 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13118/providers/Microsoft.DataLakeStore/accounts/testadlfs18004?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzExOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTgwMDQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg14699/providers/Microsoft.DataLakeStore/accounts/testadlfs15474?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDY5OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTU0NzQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7cb024eb-4e3d-4fd5-9eaa-e7de41badd07" + "54e52b51-8207-489e-a9da-22cd63e7afba" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs15474' under resource group 'datalakerg14699' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "166" @@ -424,7 +432,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:22:57 GMT" + "Mon, 24 Jul 2017 22:58:35 GMT" ], "Pragma": [ "no-cache" @@ -433,13 +441,13 @@ "gateway" ], "x-ms-request-id": [ - "dd685461-409f-4035-a6ed-a18b23e5e9fa" + "9094f9bb-589c-4014-83e0-8bc2e2fa108c" ], "x-ms-correlation-request-id": [ - "dd685461-409f-4035-a6ed-a18b23e5e9fa" + "9094f9bb-589c-4014-83e0-8bc2e2fa108c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T182257Z:dd685461-409f-4035-a6ed-a18b23e5e9fa" + "WESTUS:20170724T225835Z:9094f9bb-589c-4014-83e0-8bc2e2fa108c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -448,16 +456,17 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13118/providers/Microsoft.DataLakeStore/accounts/testadlfs18004?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzExOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTgwMDQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg14699/providers/Microsoft.DataLakeStore/accounts/testadlfs15474?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDY5OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTU0NzQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"testadlfs15474.azuredatalakestore.net\",\r\n \"accountId\": \"b6832619-ddde-446e-9c61-1e6ab16e15af\",\r\n \"creationTime\": \"2017-07-24T22:58:39.8699561Z\",\r\n \"lastModifiedTime\": \"2017-07-24T22:58:39.8699561Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg14699/providers/Microsoft.DataLakeStore/accounts/testadlfs15474\",\r\n \"name\": \"testadlfs15474\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -472,7 +481,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:23:29 GMT" + "Mon, 24 Jul 2017 22:59:08 GMT" ], "Pragma": [ "no-cache" @@ -484,7 +493,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "ecc27cdf-c73b-4936-8d1a-58af70d7c656" + "ba356c9b-b685-4f6a-938b-3ae6070b3b7d" ], "X-Content-Type-Options": [ "nosniff" @@ -496,13 +505,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14991" ], "x-ms-correlation-request-id": [ - "7182f2e5-12b4-4237-b42c-8b26e54c2c4e" + "e50bfd27-8efe-4532-94e1-443c06210ddb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T182330Z:7182f2e5-12b4-4237-b42c-8b26e54c2c4e" + "WESTUS:20170724T225908Z:e50bfd27-8efe-4532-94e1-443c06210ddb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -511,22 +520,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13118/providers/Microsoft.DataLakeStore/accounts/testadlfs18004?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzExOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTgwMDQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg14699/providers/Microsoft.DataLakeStore/accounts/testadlfs15474?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDY5OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTU0NzQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3b2d9b68-6344-4c54-bdb4-e6c24f745597" + "15fcaea5-fb2d-45a6-9390-ca6bff96849d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"testadlfs15474.azuredatalakestore.net\",\r\n \"accountId\": \"b6832619-ddde-446e-9c61-1e6ab16e15af\",\r\n \"creationTime\": \"2017-07-24T22:58:39.8699561Z\",\r\n \"lastModifiedTime\": \"2017-07-24T22:58:39.8699561Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg14699/providers/Microsoft.DataLakeStore/accounts/testadlfs15474\",\r\n \"name\": \"testadlfs15474\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -541,7 +551,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:23:30 GMT" + "Mon, 24 Jul 2017 22:59:09 GMT" ], "Pragma": [ "no-cache" @@ -553,7 +563,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "c0c869c6-48ae-4777-ae52-7e59b1f6d768" + "a9eb8e19-c3e2-4057-8ad4-0bf8f452f327" ], "X-Content-Type-Options": [ "nosniff" @@ -565,13 +575,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14987" ], "x-ms-correlation-request-id": [ - "ede9b1ec-0320-4fc7-a6bd-9c7c9c9d3b53" + "9b81fda8-818a-4a9c-b618-2533b5b7791d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T182330Z:ede9b1ec-0320-4fc7-a6bd-9c7c9c9d3b53" + "WESTUS:20170724T225909Z:9b81fda8-818a-4a9c-b618-2533b5b7791d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -580,8 +590,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13118/providers/Microsoft.DataLakeStore/accounts/testadlfs18004?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzExOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTgwMDQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg14699/providers/Microsoft.DataLakeStore/accounts/testadlfs15474?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDY5OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTU0NzQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -592,16 +602,17 @@ "31" ], "x-ms-client-request-id": [ - "28daf7b5-af08-4efe-a005-6ad258a82f61" + "2b9a3c27-b85c-4a3f-8897-50100d9149b5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"b6832619-ddde-446e-9c61-1e6ab16e15af\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg14699/providers/Microsoft.DataLakeStore/accounts/testadlfs15474\",\r\n \"name\": \"testadlfs15474\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "420" @@ -619,13 +630,13 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:22:58 GMT" + "Mon, 24 Jul 2017 22:58:37 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13118/providers/Microsoft.DataLakeStore/accounts/testadlfs18004/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg14699/providers/Microsoft.DataLakeStore/accounts/testadlfs15474/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -634,10 +645,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "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" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/b6832619-ddde-446e-9c61-1e6ab16e15af0?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "867bcc15-7f3d-4646-a46d-1e8ce6ca08ed" + "64651215-1e0b-4499-acb6-9f22fbcafe7b" ], "X-Content-Type-Options": [ "nosniff" @@ -649,13 +660,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1195" ], "x-ms-correlation-request-id": [ - "0aac3f6e-6771-42eb-8e14-6af0ca8dd8ef" + "a4b6a068-320f-42c9-b4af-b17973b8a6d1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T182259Z:0aac3f6e-6771-42eb-8e14-6af0ca8dd8ef" + "WESTUS:20170724T225837Z:a4b6a068-320f-42c9-b4af-b17973b8a6d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -664,13 +675,14 @@ "StatusCode": 201 }, { - "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", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/b6832619-ddde-446e-9c61-1e6ab16e15af0?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2I2ODMyNjE5LWRkZGUtNDQ2ZS05YzYxLTFlNmFiMTZlMTVhZjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -688,7 +700,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:23:28 GMT" + "Mon, 24 Jul 2017 22:59:07 GMT" ], "Pragma": [ "no-cache" @@ -700,7 +712,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "9355ef86-cb45-4f66-8456-3474f25660ea" + "4fe4c57f-cc08-45fb-9b66-b686f1d6b4ac" ], "X-Content-Type-Options": [ "nosniff" @@ -712,13 +724,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14989" ], "x-ms-correlation-request-id": [ - "677bdb01-e0c0-4f8e-8d55-ca27007b0390" + "418e12e1-9c3c-471b-88f9-d3f1e0abb0ab" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T182329Z:677bdb01-e0c0-4f8e-8d55-ca27007b0390" + "WESTUS:20170724T225907Z:418e12e1-9c3c-471b-88f9-d3f1e0abb0ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -727,8 +739,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7381?op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3MzgxP29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt6661?write=true&op=CREATE&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ2NjYxP3dyaXRlPXRydWUmb3A9Q1JFQVRFJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -739,13 +751,14 @@ "42" ], "x-ms-client-request-id": [ - "2d9d2650-eed3-4cbc-8880-a729820217e8" + "a45a14ee-98eb-4a73-82eb-34dcbd6115f8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "", @@ -760,22 +773,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:23:32 GMT" + "Mon, 24 Jul 2017 22:59:15 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs18004.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt7381?op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs15474.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt6661?write=true&op=CREATE&api-version=2016-11-01" ], "x-ms-request-id": [ - "e203e722-a270-41b9-8d30-8b4dddc97fb2" + "cc52f21b-7fe9-4d70-be60-6d46ec1e619f" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -790,22 +803,23 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7381?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3MzgxP29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt6661?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ2NjYxP29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "49143f01-97a7-402a-8a2a-4b99737e151c" + "bc51f839-f7dc-4509-b4c8-01da3b46f434" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1500937155606,\r\n \"modificationTime\": 1500937155659,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "305" @@ -820,16 +834,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:23:32 GMT" + "Mon, 24 Jul 2017 22:59:15 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "8c5f6432-605b-444f-bbfb-bffd97292775" + "b8b185dc-31de-47ed-82c2-169b985eb5d7" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -844,19 +858,20 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7381?op=OPEN&read=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3MzgxP29wPU9QRU4mcmVhZD10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt6661?read=true&op=OPEN&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ2NjYxP3JlYWQ9dHJ1ZSZvcD1PUEVOJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f3878a29-e7b0-45c8-aeae-f199edd9f286" + "0f01d1e8-04d8-4491-8d5f-9212d0b0d3e4" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "These are some random test contents 1234!@", @@ -871,7 +886,7 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:23:33 GMT" + "Mon, 24 Jul 2017 22:59:15 GMT" ], "Pragma": [ "no-cache" @@ -880,10 +895,10 @@ "chunked" ], "x-ms-request-id": [ - "fd5b7e3b-4574-4d34-b93c-130637d77b75" + "99c9ad7c-35b0-4d31-bd24-92a0286e3ad7" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -904,13 +919,14 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "24b45b4b-ccee-49f7-8446-f50d6e1c091a" + "792f52a5-a385-45bd-9cf9-b41c21175a8b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "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}", @@ -928,16 +944,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:23:33 GMT" + "Mon, 24 Jul 2017 22:59:15 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "439275a5-340d-441f-9aa2-7732cfcdd7f0" + "0213b319-8f91-4cba-a401-42d2121460b8" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -958,13 +974,14 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b31e04c9-28de-4d3a-8c75-f3b27dd174b6" + "2186b085-a68c-433a-a6ee-b80ba2be1878" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "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}", @@ -982,16 +999,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:23:33 GMT" + "Mon, 24 Jul 2017 22:59:15 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "576cb588-e0d2-4626-a1a7-5d8b9513e9bd" + "c9c55a2f-022f-4eb9-8156-e9552e2e6e5a" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -1006,19 +1023,20 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7381?op=GETCONTENTSUMMARY&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3MzgxP29wPUdFVENPTlRFTlRTVU1NQVJZJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt6661?op=GETCONTENTSUMMARY&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ2NjYxP29wPUdFVENPTlRFTlRTVU1NQVJZJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "147540ec-46e2-4bed-b701-ef48d41b4ce7" + "5fe93dd8-bc2e-4d4e-bdeb-a1a5620a3806" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "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}", @@ -1036,16 +1054,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:23:33 GMT" + "Mon, 24 Jul 2017 22:59:16 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "10497fc3-11c9-4093-8f29-6b63dca1f2b9" + "95b69b31-618f-4636-9e15-8c3f0cbda869" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -1062,15 +1080,15 @@ ], "Names": { ".ctor": [ - "datalakerg13118", - "testdatalake1263", - "testadlfs18004" + "datalakerg14699", + "testdatalake18821", + "testadlfs15474" ], "CreateFile": [ - "SDKTestFolder01/SDKTestFile01.txt7381" + "SDKTestFolder01/SDKTestFile01.txt6661" ] }, "Variables": { - "SubscriptionId": "53d9063d-87ae-4ea8-be90-3686c3b8669f" + "SubscriptionId": "04319d6d-4a66-4701-bb2f-e7dbbd9ae4db" } } \ No newline at end of file diff --git a/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemGetNonExistentFile.json b/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemGetNonExistentFile.json index ed4136bfbb52..c8e372b26d96 100644 --- a/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemGetNonExistentFile.json +++ b/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemGetNonExistentFile.json @@ -1,22 +1,23 @@ { "Entries": [ { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "75de020f-9ae9-46b0-94e9-31645136da20" + "9d868b5f-4fe1-4b99-a47a-e748d3b29a88" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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" @@ -28,7 +29,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:03:45 GMT" + "Mon, 24 Jul 2017 22:41:53 GMT" ], "Pragma": [ "no-cache" @@ -40,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-request-id": [ - "717ed235-0ba0-4359-bb5e-90c899ebf399" + "6adcfcf4-f0b2-4ed3-bc10-f41657f6381d" ], "x-ms-correlation-request-id": [ - "717ed235-0ba0-4359-bb5e-90c899ebf399" + "6adcfcf4-f0b2-4ed3-bc10-f41657f6381d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180346Z:717ed235-0ba0-4359-bb5e-90c899ebf399" + "WESTUS:20170724T224153Z:6adcfcf4-f0b2-4ed3-bc10-f41657f6381d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -58,22 +59,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6364c932-92cf-49ba-a976-262740754dba" + "9c55eed3-c56a-4634-afed-1a316802cfa6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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" @@ -85,7 +87,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:03:45 GMT" + "Mon, 24 Jul 2017 22:41:53 GMT" ], "Pragma": [ "no-cache" @@ -94,16 +96,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14993" ], "x-ms-request-id": [ - "10e3ae70-d04f-44f7-a670-1c731f61987b" + "8ba30ef0-d7d2-4ccf-a366-1819184f9a3c" ], "x-ms-correlation-request-id": [ - "10e3ae70-d04f-44f7-a670-1c731f61987b" + "8ba30ef0-d7d2-4ccf-a366-1819184f9a3c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180346Z:10e3ae70-d04f-44f7-a670-1c731f61987b" + "WESTUS:20170724T224153Z:8ba30ef0-d7d2-4ccf-a366-1819184f9a3c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -112,22 +114,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9cba9534-03f6-4188-9df4-ff6333902720" + "cbe90e1c-91f4-4481-881f-c5aa50dbc360" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/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 \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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 \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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,7 +142,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:03:46 GMT" + "Mon, 24 Jul 2017 22:41:53 GMT" ], "Pragma": [ "no-cache" @@ -151,16 +154,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1198" ], "x-ms-request-id": [ - "e08a23f4-b793-49bf-bd8b-65f01d06180a" + "f5cd596f-c19e-4557-9660-6f275f981b89" ], "x-ms-correlation-request-id": [ - "e08a23f4-b793-49bf-bd8b-65f01d06180a" + "f5cd596f-c19e-4557-9660-6f275f981b89" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180347Z:e08a23f4-b793-49bf-bd8b-65f01d06180a" + "WESTUS:20170724T224154Z:f5cd596f-c19e-4557-9660-6f275f981b89" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -169,22 +172,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ed66455a-2992-4762-9b47-f8e9dfb54465" + "30ea1d8b-311e-436e-9cfd-3685bba7c7ba" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/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 \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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 \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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" @@ -196,7 +200,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:03:46 GMT" + "Mon, 24 Jul 2017 22:41:54 GMT" ], "Pragma": [ "no-cache" @@ -205,16 +209,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14992" ], "x-ms-request-id": [ - "b252d9c1-b813-4218-b005-0ad5f03421c5" + "aa926f88-865f-48bb-9849-ac99491a9395" ], "x-ms-correlation-request-id": [ - "b252d9c1-b813-4218-b005-0ad5f03421c5" + "aa926f88-865f-48bb-9849-ac99491a9395" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180347Z:b252d9c1-b813-4218-b005-0ad5f03421c5" + "WESTUS:20170724T224154Z:aa926f88-865f-48bb-9849-ac99491a9395" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -223,22 +227,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13039?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzAzOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg15656?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNTY1Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0198ffe6-fe75-470a-aa00-612a8b5c4ceb" + "d61cd7d3-8b97-4235-8b96-08df833b5a6f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg13039' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg15656' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -253,7 +258,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:03:46 GMT" + "Mon, 24 Jul 2017 22:41:54 GMT" ], "Pragma": [ "no-cache" @@ -262,16 +267,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14991" ], "x-ms-request-id": [ - "75b7c598-00ec-4969-8f6a-0821d37b297e" + "ac74b5ff-aea5-444a-83ab-3e0244d5ea2f" ], "x-ms-correlation-request-id": [ - "75b7c598-00ec-4969-8f6a-0821d37b297e" + "ac74b5ff-aea5-444a-83ab-3e0244d5ea2f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180347Z:75b7c598-00ec-4969-8f6a-0821d37b297e" + "WESTUS:20170724T224154Z:ac74b5ff-aea5-444a-83ab-3e0244d5ea2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -280,22 +285,23 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13039?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzAzOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg15656?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNTY1Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c89d61e7-8b03-43e9-9967-6323139c4129" + "c00f0c65-e2d0-4614-ad8b-cc9b91de09fa" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg15656\",\r\n \"name\": \"datalakerg15656\",\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 +313,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:03:48 GMT" + "Mon, 24 Jul 2017 22:41:55 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +322,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14990" ], "x-ms-request-id": [ - "02587afb-76a5-4858-842e-28458759d19c" + "41aa70b6-c859-4124-b092-53e3b7dd37a7" ], "x-ms-correlation-request-id": [ - "02587afb-76a5-4858-842e-28458759d19c" + "41aa70b6-c859-4124-b092-53e3b7dd37a7" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180348Z:02587afb-76a5-4858-842e-28458759d19c" + "WESTUS:20170724T224155Z:41aa70b6-c859-4124-b092-53e3b7dd37a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +340,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13039?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzAzOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg15656?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNTY1Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,16 +352,17 @@ "31" ], "x-ms-client-request-id": [ - "0bdfd43b-c3be-4c0f-b1ee-bc3e72c5978a" + "ad0f5da0-8175-4c03-9273-3d9b544348a3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg15656\",\r\n \"name\": \"datalakerg15656\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -370,22 +377,22 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:03:47 GMT" + "Mon, 24 Jul 2017 22:41:55 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1197" ], "x-ms-request-id": [ - "a06bb354-9b71-4121-95a4-2fc47197dc3e" + "627bf533-096c-4879-8687-2b9e590f739c" ], "x-ms-correlation-request-id": [ - "a06bb354-9b71-4121-95a4-2fc47197dc3e" + "627bf533-096c-4879-8687-2b9e590f739c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180348Z:a06bb354-9b71-4121-95a4-2fc47197dc3e" + "WESTUS:20170724T224155Z:627bf533-096c-4879-8687-2b9e590f739c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -394,25 +401,26 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13039/providers/Microsoft.DataLakeStore/accounts/testadlfs195?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzAzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTk1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg15656/providers/Microsoft.DataLakeStore/accounts/testadlfs1846?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNTY1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTg0Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6df1b560-f444-49a7-9d00-5a3823ae4b78" + "a0201181-7164-408b-baf7-f840aeeedeea" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs1846' under resource group 'datalakerg15656' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "164" + "165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -424,7 +432,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:03:48 GMT" + "Mon, 24 Jul 2017 22:41:56 GMT" ], "Pragma": [ "no-cache" @@ -433,13 +441,13 @@ "gateway" ], "x-ms-request-id": [ - "8b7a0bdd-5b01-4f0a-a411-acd8b3a38155" + "84df6879-f6d0-4f70-9b6a-3fb12df2bd62" ], "x-ms-correlation-request-id": [ - "8b7a0bdd-5b01-4f0a-a411-acd8b3a38155" + "84df6879-f6d0-4f70-9b6a-3fb12df2bd62" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180348Z:8b7a0bdd-5b01-4f0a-a411-acd8b3a38155" + "WESTUS:20170724T224156Z:84df6879-f6d0-4f70-9b6a-3fb12df2bd62" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -448,16 +456,17 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13039/providers/Microsoft.DataLakeStore/accounts/testadlfs195?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzAzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTk1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg15656/providers/Microsoft.DataLakeStore/accounts/testadlfs1846?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNTY1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTg0Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"testadlfs1846.azuredatalakestore.net\",\r\n \"accountId\": \"a07c2076-9467-4fda-9792-0d369ad29a5e\",\r\n \"creationTime\": \"2017-07-24T22:41:59.0122714Z\",\r\n \"lastModifiedTime\": \"2017-07-24T22:41:59.0122714Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg15656/providers/Microsoft.DataLakeStore/accounts/testadlfs1846\",\r\n \"name\": \"testadlfs1846\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -472,7 +481,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:04:21 GMT" + "Mon, 24 Jul 2017 22:42:29 GMT" ], "Pragma": [ "no-cache" @@ -484,7 +493,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "315f4bac-88a2-4470-8698-4b0f2302c99b" + "c2086ac9-f317-422c-b400-1aafce1c7aa7" ], "X-Content-Type-Options": [ "nosniff" @@ -496,13 +505,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14878" ], "x-ms-correlation-request-id": [ - "cbaae1cd-f4a8-4a16-951c-54cc79509242" + "c068f691-2f64-479b-9334-4b22bc3174bf" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180421Z:cbaae1cd-f4a8-4a16-951c-54cc79509242" + "WESTUS:20170724T224229Z:c068f691-2f64-479b-9334-4b22bc3174bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -511,22 +520,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13039/providers/Microsoft.DataLakeStore/accounts/testadlfs195?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzAzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTk1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg15656/providers/Microsoft.DataLakeStore/accounts/testadlfs1846?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNTY1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTg0Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e68b0684-55f8-4bdf-ad66-9f4b8bb3f638" + "63efcd38-ceb0-44d2-89a8-ee1eeb9451cc" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"testadlfs1846.azuredatalakestore.net\",\r\n \"accountId\": \"a07c2076-9467-4fda-9792-0d369ad29a5e\",\r\n \"creationTime\": \"2017-07-24T22:41:59.0122714Z\",\r\n \"lastModifiedTime\": \"2017-07-24T22:41:59.0122714Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg15656/providers/Microsoft.DataLakeStore/accounts/testadlfs1846\",\r\n \"name\": \"testadlfs1846\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -541,7 +551,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:04:21 GMT" + "Mon, 24 Jul 2017 22:42:29 GMT" ], "Pragma": [ "no-cache" @@ -553,7 +563,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "474f32e7-5c16-4e10-a181-7f5ae962fdb2" + "79c26593-fa4a-42ba-9c41-c3a55a833385" ], "X-Content-Type-Options": [ "nosniff" @@ -565,13 +575,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14993" ], "x-ms-correlation-request-id": [ - "d55ff71c-90f8-48ce-834a-76ec00ea0c8f" + "80244e19-558d-48ea-a148-1bcefb8633fb" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180422Z:d55ff71c-90f8-48ce-834a-76ec00ea0c8f" + "WESTUS:20170724T224230Z:80244e19-558d-48ea-a148-1bcefb8633fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -580,8 +590,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13039/providers/Microsoft.DataLakeStore/accounts/testadlfs195?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzAzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTk1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg15656/providers/Microsoft.DataLakeStore/accounts/testadlfs1846?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNTY1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTg0Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -592,19 +602,20 @@ "31" ], "x-ms-client-request-id": [ - "7f694bb2-ad22-489e-b732-38647e66826f" + "2f205bb4-c21d-4304-b420-f99eb26d94df" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"a07c2076-9467-4fda-9792-0d369ad29a5e\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg15656/providers/Microsoft.DataLakeStore/accounts/testadlfs1846\",\r\n \"name\": \"testadlfs1846\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "416" + "418" ], "Content-Type": [ "application/json" @@ -619,13 +630,13 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:03:50 GMT" + "Mon, 24 Jul 2017 22:41:58 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13039/providers/Microsoft.DataLakeStore/accounts/testadlfs195/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg15656/providers/Microsoft.DataLakeStore/accounts/testadlfs1846/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -634,10 +645,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "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" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/a07c2076-9467-4fda-9792-0d369ad29a5e0?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "959429d4-9076-4c43-ae94-f23fb6103fb3" + "75f489d1-b3da-4bdb-9ec0-f41d500159d6" ], "X-Content-Type-Options": [ "nosniff" @@ -649,13 +660,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "8b0fe862-e1a3-4f58-9dce-51d577c4f26f" + "79aed6e0-bad1-48d3-b967-bbe4035090a1" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180350Z:8b0fe862-e1a3-4f58-9dce-51d577c4f26f" + "WESTUS:20170724T224158Z:79aed6e0-bad1-48d3-b967-bbe4035090a1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -664,13 +675,14 @@ "StatusCode": 201 }, { - "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", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/a07c2076-9467-4fda-9792-0d369ad29a5e0?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2EwN2MyMDc2LTk0NjctNGZkYS05NzkyLTBkMzY5YWQyOWE1ZTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -688,7 +700,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:04:20 GMT" + "Mon, 24 Jul 2017 22:42:28 GMT" ], "Pragma": [ "no-cache" @@ -700,7 +712,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "c98b2d4b-0a72-409f-9243-c375636a2d30" + "63bdd686-6fad-46a4-9ad0-17691745b4f7" ], "X-Content-Type-Options": [ "nosniff" @@ -712,13 +724,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14998" ], "x-ms-correlation-request-id": [ - "82e5d9db-74d8-4888-a191-e6e2dace7117" + "7d585aac-5373-4c52-a712-a0700c774825" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180421Z:82e5d9db-74d8-4888-a191-e6e2dace7117" + "WESTUS:20170724T224228Z:7d585aac-5373-4c52-a712-a0700c774825" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,16 +745,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "84243c0f-f483-48a0-9e7c-a48ea5b31251" + "a49c359a-ef43-46ae-9fd2-d891344de924" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /nonexistentfile001.txt [9a533517-f54a-4fb4-826e-abcf45fbc59e][2017-07-24T15:42:34.4483895-07:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "243" @@ -757,16 +770,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:04:32 GMT" + "Mon, 24 Jul 2017 22:42:34 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "c17da41f-b8b1-4ff9-abb4-915f3f00b725" + "9a533517-f54a-4fb4-826e-abcf45fbc59e" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x8309000A" @@ -783,12 +796,12 @@ ], "Names": { ".ctor": [ - "datalakerg13039", - "testdatalake16981", - "testadlfs195" + "datalakerg15656", + "testdatalake19124", + "testadlfs1846" ] }, "Variables": { - "SubscriptionId": "53d9063d-87ae-4ea8-be90-3686c3b8669f" + "SubscriptionId": "04319d6d-4a66-4701-bb2f-e7dbbd9ae4db" } } \ No newline at end of file diff --git a/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemListFolderContents.json b/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemListFolderContents.json index f0d18c3fed98..f71275556c39 100644 --- a/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemListFolderContents.json +++ b/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemListFolderContents.json @@ -1,22 +1,23 @@ { "Entries": [ { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "de8992f4-100d-44b2-9ec0-270b30e3c86e" + "259def6a-ce3b-4cca-b98e-f8d079dcb87e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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" @@ -28,7 +29,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:19:51 GMT" + "Mon, 24 Jul 2017 22:55:12 GMT" ], "Pragma": [ "no-cache" @@ -40,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1197" ], "x-ms-request-id": [ - "e3ba586f-1571-4c66-86b0-ec807325f5c7" + "46fbca27-f6cd-464f-ba2d-5da439b2035a" ], "x-ms-correlation-request-id": [ - "e3ba586f-1571-4c66-86b0-ec807325f5c7" + "46fbca27-f6cd-464f-ba2d-5da439b2035a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181951Z:e3ba586f-1571-4c66-86b0-ec807325f5c7" + "WESTUS:20170724T225513Z:46fbca27-f6cd-464f-ba2d-5da439b2035a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -58,22 +59,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "10449b83-9dc1-46ab-ade2-652cc60c75e6" + "8ad3c47a-d268-4fd0-9a6e-6d04c619c07c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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" @@ -85,7 +87,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:19:51 GMT" + "Mon, 24 Jul 2017 22:55:12 GMT" ], "Pragma": [ "no-cache" @@ -94,16 +96,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14996" ], "x-ms-request-id": [ - "9c3af2de-ac21-4c0d-945e-4780672bfd6e" + "3e7a1920-23a0-4ce1-8d07-02e4747bc83e" ], "x-ms-correlation-request-id": [ - "9c3af2de-ac21-4c0d-945e-4780672bfd6e" + "3e7a1920-23a0-4ce1-8d07-02e4747bc83e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181951Z:9c3af2de-ac21-4c0d-945e-4780672bfd6e" + "WESTUS:20170724T225513Z:3e7a1920-23a0-4ce1-8d07-02e4747bc83e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -112,22 +114,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fb43824b-cdb6-499f-b492-deda48bc817c" + "7a00835c-8354-4e9e-b692-42760744c84b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/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 \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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 \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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,7 +142,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:19:52 GMT" + "Mon, 24 Jul 2017 22:55:13 GMT" ], "Pragma": [ "no-cache" @@ -151,16 +154,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1196" ], "x-ms-request-id": [ - "48e9715b-0d14-4233-b9f7-399e6da46077" + "3385225d-37c1-4c77-9620-a3f8557d07f3" ], "x-ms-correlation-request-id": [ - "48e9715b-0d14-4233-b9f7-399e6da46077" + "3385225d-37c1-4c77-9620-a3f8557d07f3" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181952Z:48e9715b-0d14-4233-b9f7-399e6da46077" + "WESTUS:20170724T225514Z:3385225d-37c1-4c77-9620-a3f8557d07f3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -169,22 +172,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "87a01d51-d760-417f-b9a4-eb25a23c4b21" + "eab4d703-4be3-4c40-aea3-cf38d65b45fc" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/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 \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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 \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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" @@ -196,7 +200,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:19:52 GMT" + "Mon, 24 Jul 2017 22:55:13 GMT" ], "Pragma": [ "no-cache" @@ -205,16 +209,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14995" ], "x-ms-request-id": [ - "c4da9f21-0002-4194-a152-8d4096acf7b1" + "50c7253f-9a8a-46e0-a02f-21427fb0ad03" ], "x-ms-correlation-request-id": [ - "c4da9f21-0002-4194-a152-8d4096acf7b1" + "50c7253f-9a8a-46e0-a02f-21427fb0ad03" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181952Z:c4da9f21-0002-4194-a152-8d4096acf7b1" + "WESTUS:20170724T225514Z:50c7253f-9a8a-46e0-a02f-21427fb0ad03" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -223,22 +227,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13977?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzk3Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg15406?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNTQwNj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eda35e3b-0fba-413d-b609-08759751af1c" + "6f2d8f4f-c636-4e25-91c9-3d508c7079f2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg13977' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg15406' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -253,7 +258,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:19:52 GMT" + "Mon, 24 Jul 2017 22:55:13 GMT" ], "Pragma": [ "no-cache" @@ -262,16 +267,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14994" ], "x-ms-request-id": [ - "848b2fc3-4a76-4489-9559-cceff319f0db" + "d26b39ff-a48b-433f-b736-7b1d522ce82c" ], "x-ms-correlation-request-id": [ - "848b2fc3-4a76-4489-9559-cceff319f0db" + "d26b39ff-a48b-433f-b736-7b1d522ce82c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181952Z:848b2fc3-4a76-4489-9559-cceff319f0db" + "WESTUS:20170724T225514Z:d26b39ff-a48b-433f-b736-7b1d522ce82c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -280,22 +285,23 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13977?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzk3Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg15406?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNTQwNj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eaedca70-3427-43ac-8f69-db4d0ee52e86" + "c5135c01-3b88-41d0-aadb-60f7768c07b9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg15406\",\r\n \"name\": \"datalakerg15406\",\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 +313,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:19:53 GMT" + "Mon, 24 Jul 2017 22:55:14 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +322,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14993" ], "x-ms-request-id": [ - "b94cc817-0a63-4d87-9bef-11889be31b06" + "3c32a603-bafb-43f3-b75e-d5109d394528" ], "x-ms-correlation-request-id": [ - "b94cc817-0a63-4d87-9bef-11889be31b06" + "3c32a603-bafb-43f3-b75e-d5109d394528" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181954Z:b94cc817-0a63-4d87-9bef-11889be31b06" + "WESTUS:20170724T225515Z:3c32a603-bafb-43f3-b75e-d5109d394528" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +340,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13977?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzk3Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg15406?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNTQwNj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,16 +352,17 @@ "31" ], "x-ms-client-request-id": [ - "4ea2983c-b920-412e-91ac-48e9a5b6912a" + "60248a25-6c49-4586-8e63-ffdc3052681b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg15406\",\r\n \"name\": \"datalakerg15406\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -370,22 +377,22 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:19:53 GMT" + "Mon, 24 Jul 2017 22:55:14 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1195" ], "x-ms-request-id": [ - "a4b25918-8966-450d-8755-fc6f2c785416" + "faab5219-ab23-42f2-abd5-1ce54a67c4d1" ], "x-ms-correlation-request-id": [ - "a4b25918-8966-450d-8755-fc6f2c785416" + "faab5219-ab23-42f2-abd5-1ce54a67c4d1" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181954Z:a4b25918-8966-450d-8755-fc6f2c785416" + "WESTUS:20170724T225515Z:faab5219-ab23-42f2-abd5-1ce54a67c4d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -394,22 +401,23 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13977/providers/Microsoft.DataLakeStore/accounts/testadlfs11493?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzk3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE0OTM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg15406/providers/Microsoft.DataLakeStore/accounts/testadlfs18188?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNTQwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTgxODg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b0e35700-68c1-49ab-89ca-3300822c0102" + "212498bf-7a5e-47c5-a31e-9b4edbd6a181" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs18188' under resource group 'datalakerg15406' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "166" @@ -424,7 +432,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:19:53 GMT" + "Mon, 24 Jul 2017 22:55:15 GMT" ], "Pragma": [ "no-cache" @@ -433,13 +441,13 @@ "gateway" ], "x-ms-request-id": [ - "ec46a009-ddb0-49eb-a2d0-3bc159e696af" + "7a137dac-775d-4559-a0a4-b49313c339bf" ], "x-ms-correlation-request-id": [ - "ec46a009-ddb0-49eb-a2d0-3bc159e696af" + "7a137dac-775d-4559-a0a4-b49313c339bf" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181954Z:ec46a009-ddb0-49eb-a2d0-3bc159e696af" + "WESTUS:20170724T225515Z:7a137dac-775d-4559-a0a4-b49313c339bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -448,16 +456,17 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13977/providers/Microsoft.DataLakeStore/accounts/testadlfs11493?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzk3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE0OTM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg15406/providers/Microsoft.DataLakeStore/accounts/testadlfs18188?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNTQwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTgxODg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"testadlfs18188.azuredatalakestore.net\",\r\n \"accountId\": \"fb701ae4-1511-4337-8227-2bf5c186b272\",\r\n \"creationTime\": \"2017-07-24T22:55:19.0552004Z\",\r\n \"lastModifiedTime\": \"2017-07-24T22:55:19.0552004Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg15406/providers/Microsoft.DataLakeStore/accounts/testadlfs18188\",\r\n \"name\": \"testadlfs18188\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -472,7 +481,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:20:27 GMT" + "Mon, 24 Jul 2017 22:55:48 GMT" ], "Pragma": [ "no-cache" @@ -484,7 +493,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "6b6cfc3c-42bf-4035-90de-e24ae19b95cd" + "8ddc4984-926e-4240-8ddb-275a752a176f" ], "X-Content-Type-Options": [ "nosniff" @@ -496,13 +505,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14874" ], "x-ms-correlation-request-id": [ - "d1054569-d5ba-49a0-87f9-06411c3bfe27" + "41484f35-bba8-4e38-bc30-337ba9c72558" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T182027Z:d1054569-d5ba-49a0-87f9-06411c3bfe27" + "WESTUS:20170724T225549Z:41484f35-bba8-4e38-bc30-337ba9c72558" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -511,22 +520,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13977/providers/Microsoft.DataLakeStore/accounts/testadlfs11493?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzk3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE0OTM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg15406/providers/Microsoft.DataLakeStore/accounts/testadlfs18188?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNTQwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTgxODg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e2260e7b-48e9-452c-a5e6-a4e33bbbe94d" + "73db3a3f-4922-4ddd-a3df-9922707392d4" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"testadlfs18188.azuredatalakestore.net\",\r\n \"accountId\": \"fb701ae4-1511-4337-8227-2bf5c186b272\",\r\n \"creationTime\": \"2017-07-24T22:55:19.0552004Z\",\r\n \"lastModifiedTime\": \"2017-07-24T22:55:19.0552004Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg15406/providers/Microsoft.DataLakeStore/accounts/testadlfs18188\",\r\n \"name\": \"testadlfs18188\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -541,7 +551,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:20:28 GMT" + "Mon, 24 Jul 2017 22:55:49 GMT" ], "Pragma": [ "no-cache" @@ -553,7 +563,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "4cd034d5-7f29-4d84-bdd7-27d34551968e" + "aaa992ac-e0ea-4763-97f2-56c5eaa58b66" ], "X-Content-Type-Options": [ "nosniff" @@ -565,13 +575,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14992" ], "x-ms-correlation-request-id": [ - "550e47d5-4b96-4bb6-bc87-cfa559d2bbe9" + "b3ecadaf-66fb-4e04-84db-cce69afc0148" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T182028Z:550e47d5-4b96-4bb6-bc87-cfa559d2bbe9" + "WESTUS:20170724T225549Z:b3ecadaf-66fb-4e04-84db-cce69afc0148" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -580,8 +590,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13977/providers/Microsoft.DataLakeStore/accounts/testadlfs11493?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzk3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE0OTM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg15406/providers/Microsoft.DataLakeStore/accounts/testadlfs18188?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNTQwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTgxODg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -592,16 +602,17 @@ "31" ], "x-ms-client-request-id": [ - "f10e16f2-b561-4980-b5dd-c05b146100c0" + "1c268982-ccf5-41e6-9042-e4b94e13a018" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"fb701ae4-1511-4337-8227-2bf5c186b272\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg15406/providers/Microsoft.DataLakeStore/accounts/testadlfs18188\",\r\n \"name\": \"testadlfs18188\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "420" @@ -619,13 +630,13 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:19:56 GMT" + "Mon, 24 Jul 2017 22:55:17 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13977/providers/Microsoft.DataLakeStore/accounts/testadlfs11493/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg15406/providers/Microsoft.DataLakeStore/accounts/testadlfs18188/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -634,10 +645,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "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" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/fb701ae4-1511-4337-8227-2bf5c186b2720?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "7a45915d-56eb-497d-a036-caeb0b68eab2" + "a7bcacf9-0cf9-4288-8e4e-e3a2b7c13f1f" ], "X-Content-Type-Options": [ "nosniff" @@ -649,13 +660,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1199" ], "x-ms-correlation-request-id": [ - "10b245db-82a6-4ce0-ad17-43149b8f22e8" + "29b11207-e2e2-48fa-8bd9-948fa3a2839f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181956Z:10b245db-82a6-4ce0-ad17-43149b8f22e8" + "WESTUS:20170724T225517Z:29b11207-e2e2-48fa-8bd9-948fa3a2839f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -664,13 +675,14 @@ "StatusCode": 201 }, { - "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", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/fb701ae4-1511-4337-8227-2bf5c186b2720?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2ZiNzAxYWU0LTE1MTEtNDMzNy04MjI3LTJiZjVjMTg2YjI3MjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -688,7 +700,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:20:26 GMT" + "Mon, 24 Jul 2017 22:55:48 GMT" ], "Pragma": [ "no-cache" @@ -700,7 +712,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "73847811-2a4a-43db-a0fb-15e5fbdaaeaa" + "ad75d99d-9407-4107-b304-2c6e90f3281b" ], "X-Content-Type-Options": [ "nosniff" @@ -712,13 +724,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14993" ], "x-ms-correlation-request-id": [ - "57bd457b-c6b1-4387-82d4-cb333d807a3e" + "740a3a1c-a85a-42b3-86c6-f6cff31d17cc" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T182027Z:57bd457b-c6b1-4387-82d4-cb333d807a3e" + "WESTUS:20170724T225548Z:740a3a1c-a85a-42b3-86c6-f6cff31d17cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -727,19 +739,20 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01224?op=MKDIRS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMjI0P29wPU1LRElSUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder016488?op=MKDIRS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNjQ4OD9vcD1NS0RJUlMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d11d23ad-a478-451a-88b4-d6acff919e8d" + "f0c61c72-5c1c-40e4-89c7-dda078e06338" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "{\r\n \"boolean\": true\r\n}", @@ -757,16 +770,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:20:31 GMT" + "Mon, 24 Jul 2017 22:55:52 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "6febafd9-58ca-4920-b293-f470c27851fb" + "37c410ea-86e3-4845-82c3-320d0c46b427" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -781,22 +794,23 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01224?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMjI0P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder016488?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNjQ4OD9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "22d2204b-e1d8-4671-ac4f-f73d11d898ba" + "b1e0c83b-cdd3-47bb-b8c5-bb7af82a37c5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"DIRECTORY\",\r\n \"blockSize\": 0,\r\n \"accessTime\": 1500936952826,\r\n \"modificationTime\": 1500936952826,\r\n \"replication\": 0,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "280" @@ -811,16 +825,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:20:31 GMT" + "Mon, 24 Jul 2017 22:55:52 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "5bbfe3bc-e43f-48c6-b178-88fbb3880711" + "3a3d72b5-4a65-402d-9d99-50e71bd7a680" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -835,8 +849,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01224%2FSDKTestFile01.txt3953?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMjI0JTJGU0RLVGVzdEZpbGUwMS50eHQzOTUzP3N5bmNGbGFnPURBVEEmb3A9Q1JFQVRFJndyaXRlPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder016488%2FSDKTestFile01.txt4316?syncFlag=DATA&write=true&op=CREATE&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNjQ4OCUyRlNES1Rlc3RGaWxlMDEudHh0NDMxNj9zeW5jRmxhZz1EQVRBJndyaXRlPXRydWUmb3A9Q1JFQVRFJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { @@ -847,13 +861,14 @@ "0" ], "x-ms-client-request-id": [ - "efaf02fb-92b8-4bce-9161-477cc828f151" + "9bffbbd0-fcac-402a-a821-0f43944bec6a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "", @@ -868,22 +883,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:20:31 GMT" + "Mon, 24 Jul 2017 22:55:52 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs11493.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01224/SDKTestFile01.txt3953?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs18188.azuredatalakestore.net/webhdfs/v1/SDKTestFolder016488/SDKTestFile01.txt4316?syncFlag=DATA&write=true&op=CREATE&api-version=2016-11-01" ], "x-ms-request-id": [ - "0e9a95f9-e553-4adb-90c7-cc45cb779b5a" + "9aec46f0-3d00-4204-b0a4-21a3a1274280" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -898,22 +913,23 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01224%2FSDKTestFile01.txt3953?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMjI0JTJGU0RLVGVzdEZpbGUwMS50eHQzOTUzP29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder016488%2FSDKTestFile01.txt4316?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNjQ4OCUyRlNES1Rlc3RGaWxlMDEudHh0NDMxNj9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "78ad57ba-019f-4000-b4bb-24d7d3524a01" + "2712ebfa-d603-4c08-9d1f-dafde4df998f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1500936953215,\r\n \"modificationTime\": 1500936953215,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "304" @@ -928,16 +944,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:20:32 GMT" + "Mon, 24 Jul 2017 22:55:53 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "8901098d-3268-43dd-be94-7a6bd0479cf1" + "79d6b502-016d-4c4d-9448-6e206993328d" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -952,22 +968,23 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01224?op=LISTSTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMjI0P29wPUxJU1RTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder016488?op=LISTSTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNjQ4OD9vcD1MSVNUU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "29abe11c-4586-4504-b261-5bd7d25bed98" + "0d6142d5-edd8-4b28-adb6-52c40adfa74e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"FileStatuses\": {\r\n \"FileStatus\": [\r\n {\r\n \"length\": 0,\r\n \"pathSuffix\": \"SDKTestFile01.txt4316\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1500936953215,\r\n \"modificationTime\": 1500936953215,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "344" @@ -982,16 +999,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:20:32 GMT" + "Mon, 24 Jul 2017 22:55:53 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "baf25232-830a-4e04-99f3-9c633c36ed8e" + "ab98741f-6d77-4709-894b-7c288a7e0900" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -1008,18 +1025,18 @@ ], "Names": { ".ctor": [ - "datalakerg13977", - "testdatalake18226", - "testadlfs11493" + "datalakerg15406", + "testdatalake12193", + "testadlfs18188" ], "CreateFolder": [ - "SDKTestFolder01224" + "SDKTestFolder016488" ], "CreateFile": [ - "SDKTestFolder01224/SDKTestFile01.txt3953" + "SDKTestFolder016488/SDKTestFile01.txt4316" ] }, "Variables": { - "SubscriptionId": "53d9063d-87ae-4ea8-be90-3686c3b8669f" + "SubscriptionId": "04319d6d-4a66-4701-bb2f-e7dbbd9ae4db" } } \ No newline at end of file diff --git a/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemMoveFileAndFolder.json b/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemMoveFileAndFolder.json index 2cc18c46b568..b0780c8f4ce1 100644 --- a/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemMoveFileAndFolder.json +++ b/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemMoveFileAndFolder.json @@ -1,22 +1,23 @@ { "Entries": [ { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c64b51cf-1854-4c76-963f-b4a4300447a8" + "15953043-d76c-451b-af95-8ec4afad4bc4" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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" @@ -28,7 +29,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:23:36 GMT" + "Mon, 24 Jul 2017 23:13:53 GMT" ], "Pragma": [ "no-cache" @@ -40,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1196" ], "x-ms-request-id": [ - "e88753a3-f406-46ab-9d51-70aadcc34055" + "65838ce1-0881-4522-9d9a-933c8cb3dc0b" ], "x-ms-correlation-request-id": [ - "e88753a3-f406-46ab-9d51-70aadcc34055" + "65838ce1-0881-4522-9d9a-933c8cb3dc0b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T182337Z:e88753a3-f406-46ab-9d51-70aadcc34055" + "WESTUS:20170724T231354Z:65838ce1-0881-4522-9d9a-933c8cb3dc0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -58,22 +59,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2040b3c0-61b2-47d4-9c18-9b5d2d670cfb" + "261aca62-2db9-4e6e-822d-dd7bfb9b44c5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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" @@ -85,7 +87,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:23:37 GMT" + "Mon, 24 Jul 2017 23:13:53 GMT" ], "Pragma": [ "no-cache" @@ -94,16 +96,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14993" ], "x-ms-request-id": [ - "1f46b788-05d8-42a1-94a8-5e3a4a1f76e8" + "192b9f1e-8620-48f9-b511-0c5d97a57530" ], "x-ms-correlation-request-id": [ - "1f46b788-05d8-42a1-94a8-5e3a4a1f76e8" + "192b9f1e-8620-48f9-b511-0c5d97a57530" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T182337Z:1f46b788-05d8-42a1-94a8-5e3a4a1f76e8" + "WESTUS:20170724T231354Z:192b9f1e-8620-48f9-b511-0c5d97a57530" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -112,22 +114,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1c14348f-a40e-4f4e-a559-b11854832880" + "b3986edc-dc0e-4976-a87d-1cf5eba01dfa" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/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 \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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 \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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,7 +142,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:23:37 GMT" + "Mon, 24 Jul 2017 23:13:54 GMT" ], "Pragma": [ "no-cache" @@ -151,16 +154,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1195" ], "x-ms-request-id": [ - "7c310980-3b92-4c62-89c5-27e49f5c4fa4" + "22ac3422-21b0-4d08-9930-a6943a68d6a2" ], "x-ms-correlation-request-id": [ - "7c310980-3b92-4c62-89c5-27e49f5c4fa4" + "22ac3422-21b0-4d08-9930-a6943a68d6a2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T182337Z:7c310980-3b92-4c62-89c5-27e49f5c4fa4" + "WESTUS:20170724T231355Z:22ac3422-21b0-4d08-9930-a6943a68d6a2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -169,22 +172,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b4ee1251-d16c-44e4-a736-80f421987839" + "4fcb3909-1e27-49a8-ba34-e348c57c2b0c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/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 \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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 \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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" @@ -196,7 +200,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:23:37 GMT" + "Mon, 24 Jul 2017 23:13:54 GMT" ], "Pragma": [ "no-cache" @@ -205,16 +209,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14992" ], "x-ms-request-id": [ - "65afcdef-eb55-4138-9ec0-59c79e1ffca2" + "7b906c18-60d1-4a31-8698-0020d5488cac" ], "x-ms-correlation-request-id": [ - "65afcdef-eb55-4138-9ec0-59c79e1ffca2" + "7b906c18-60d1-4a31-8698-0020d5488cac" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T182337Z:65afcdef-eb55-4138-9ec0-59c79e1ffca2" + "WESTUS:20170724T231355Z:7b906c18-60d1-4a31-8698-0020d5488cac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -223,22 +227,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg12776?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMjc3Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg13201?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzIwMT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "158fece0-5a68-49e3-9b75-9d7eb32d6e2e" + "948c6942-1b32-4111-bedd-da576f0e8c74" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg12776' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg13201' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -253,7 +258,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:23:37 GMT" + "Mon, 24 Jul 2017 23:13:55 GMT" ], "Pragma": [ "no-cache" @@ -262,16 +267,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14991" ], "x-ms-request-id": [ - "07488bb6-867c-4706-b507-70790b43a740" + "fcfa2ba1-476e-45f5-9ccd-ad64bdafa917" ], "x-ms-correlation-request-id": [ - "07488bb6-867c-4706-b507-70790b43a740" + "fcfa2ba1-476e-45f5-9ccd-ad64bdafa917" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T182337Z:07488bb6-867c-4706-b507-70790b43a740" + "WESTUS:20170724T231356Z:fcfa2ba1-476e-45f5-9ccd-ad64bdafa917" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -280,22 +285,23 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg12776?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMjc3Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg13201?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzIwMT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b0d1d267-d336-433e-893c-2c7e13623e27" + "1484fff8-827e-4d4b-ac54-4fe243163e91" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg13201\",\r\n \"name\": \"datalakerg13201\",\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 +313,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:23:38 GMT" + "Mon, 24 Jul 2017 23:13:56 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +322,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14990" ], "x-ms-request-id": [ - "a17fa7a8-eea1-4c6b-884d-8ab2dae10974" + "dc3b2c52-3f8a-4744-9c52-7821f9c708b6" ], "x-ms-correlation-request-id": [ - "a17fa7a8-eea1-4c6b-884d-8ab2dae10974" + "dc3b2c52-3f8a-4744-9c52-7821f9c708b6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T182338Z:a17fa7a8-eea1-4c6b-884d-8ab2dae10974" + "WESTUS:20170724T231357Z:dc3b2c52-3f8a-4744-9c52-7821f9c708b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +340,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg12776?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMjc3Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg13201?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzIwMT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,16 +352,17 @@ "31" ], "x-ms-client-request-id": [ - "2401fd00-583a-4446-beae-f3175d3068b3" + "bde6b6d0-f596-4351-95b6-373e50c5022a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg13201\",\r\n \"name\": \"datalakerg13201\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -370,22 +377,22 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:23:38 GMT" + "Mon, 24 Jul 2017 23:13:56 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1194" ], "x-ms-request-id": [ - "ba97c063-739f-4759-a772-a563c507d81e" + "92ad032f-2ae5-4f50-9bba-dee1f7153806" ], "x-ms-correlation-request-id": [ - "ba97c063-739f-4759-a772-a563c507d81e" + "92ad032f-2ae5-4f50-9bba-dee1f7153806" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T182338Z:ba97c063-739f-4759-a772-a563c507d81e" + "WESTUS:20170724T231357Z:92ad032f-2ae5-4f50-9bba-dee1f7153806" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -394,22 +401,23 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12776/providers/Microsoft.DataLakeStore/accounts/testadlfs11929?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMjc3Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE5Mjk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg13201/providers/Microsoft.DataLakeStore/accounts/testadlfs11055?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzIwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTEwNTU/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5264d2fa-e92e-47fa-8cb3-443172a32bca" + "53e43679-1519-400b-8016-1f698b9cbff4" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs11055' under resource group 'datalakerg13201' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "166" @@ -424,7 +432,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:23:41 GMT" + "Mon, 24 Jul 2017 23:13:57 GMT" ], "Pragma": [ "no-cache" @@ -433,13 +441,13 @@ "gateway" ], "x-ms-request-id": [ - "a8e49a6a-81e1-486c-9e67-bdb57ade6d2f" + "9ab61bb1-5d76-4d13-a956-cef50f836732" ], "x-ms-correlation-request-id": [ - "a8e49a6a-81e1-486c-9e67-bdb57ade6d2f" + "9ab61bb1-5d76-4d13-a956-cef50f836732" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T182342Z:a8e49a6a-81e1-486c-9e67-bdb57ade6d2f" + "WESTUS:20170724T231357Z:9ab61bb1-5d76-4d13-a956-cef50f836732" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -448,16 +456,17 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12776/providers/Microsoft.DataLakeStore/accounts/testadlfs11929?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMjc3Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE5Mjk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg13201/providers/Microsoft.DataLakeStore/accounts/testadlfs11055?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzIwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTEwNTU/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"testadlfs11055.azuredatalakestore.net\",\r\n \"accountId\": \"29581545-d7d5-4421-8520-7667d6dd8e7f\",\r\n \"creationTime\": \"2017-07-24T23:14:01.3882578Z\",\r\n \"lastModifiedTime\": \"2017-07-24T23:14:01.3882578Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg13201/providers/Microsoft.DataLakeStore/accounts/testadlfs11055\",\r\n \"name\": \"testadlfs11055\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -472,7 +481,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:24:13 GMT" + "Mon, 24 Jul 2017 23:14:29 GMT" ], "Pragma": [ "no-cache" @@ -484,7 +493,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "9e19e39d-0059-423e-8535-fd9bd7dc12c2" + "75209e20-70d5-4767-90bf-27633521e5db" ], "X-Content-Type-Options": [ "nosniff" @@ -496,13 +505,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14986" ], "x-ms-correlation-request-id": [ - "49b77f36-3f01-4027-a84d-ad1016c8d817" + "1e8c75ba-2a3c-41d2-bab7-6d3c2bd0efbf" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T182414Z:49b77f36-3f01-4027-a84d-ad1016c8d817" + "WESTUS:20170724T231430Z:1e8c75ba-2a3c-41d2-bab7-6d3c2bd0efbf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -511,22 +520,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12776/providers/Microsoft.DataLakeStore/accounts/testadlfs11929?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMjc3Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE5Mjk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg13201/providers/Microsoft.DataLakeStore/accounts/testadlfs11055?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzIwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTEwNTU/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fe467a72-69a8-400b-b3c5-77521f2659bd" + "e7587ad5-0676-45cf-98c3-1e549c503062" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"testadlfs11055.azuredatalakestore.net\",\r\n \"accountId\": \"29581545-d7d5-4421-8520-7667d6dd8e7f\",\r\n \"creationTime\": \"2017-07-24T23:14:01.3882578Z\",\r\n \"lastModifiedTime\": \"2017-07-24T23:14:01.3882578Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg13201/providers/Microsoft.DataLakeStore/accounts/testadlfs11055\",\r\n \"name\": \"testadlfs11055\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -541,7 +551,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:24:14 GMT" + "Mon, 24 Jul 2017 23:14:31 GMT" ], "Pragma": [ "no-cache" @@ -553,7 +563,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "33d62345-61e8-485c-9e92-7af534386e59" + "1ddd46d9-e294-4aaf-a423-35246b98a5b2" ], "X-Content-Type-Options": [ "nosniff" @@ -565,13 +575,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14985" ], "x-ms-correlation-request-id": [ - "ae8789c9-514a-4680-bf3c-42b6e1ea9bc6" + "6fb5a8ce-285e-493c-9a68-da4493c47115" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T182415Z:ae8789c9-514a-4680-bf3c-42b6e1ea9bc6" + "WESTUS:20170724T231431Z:6fb5a8ce-285e-493c-9a68-da4493c47115" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -580,8 +590,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12776/providers/Microsoft.DataLakeStore/accounts/testadlfs11929?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMjc3Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE5Mjk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg13201/providers/Microsoft.DataLakeStore/accounts/testadlfs11055?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzIwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTEwNTU/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -592,16 +602,17 @@ "31" ], "x-ms-client-request-id": [ - "f86add8b-7167-456a-8dd9-29e936d83d70" + "3f2419be-d4e7-49bc-ae82-c56f801afde5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"29581545-d7d5-4421-8520-7667d6dd8e7f\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg13201/providers/Microsoft.DataLakeStore/accounts/testadlfs11055\",\r\n \"name\": \"testadlfs11055\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "420" @@ -619,13 +630,13 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:23:42 GMT" + "Mon, 24 Jul 2017 23:13:58 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg12776/providers/Microsoft.DataLakeStore/accounts/testadlfs11929/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg13201/providers/Microsoft.DataLakeStore/accounts/testadlfs11055/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -634,10 +645,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "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" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/29581545-d7d5-4421-8520-7667d6dd8e7f0?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "3bd4efa4-5a14-4bdf-9002-528f060fe73b" + "c7347155-d3a2-41ef-ad75-a51a1c0d1943" ], "X-Content-Type-Options": [ "nosniff" @@ -649,13 +660,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1196" ], "x-ms-correlation-request-id": [ - "7ad014c1-4c4e-4308-81a7-a71fd426cead" + "c39fd7d4-b213-4667-8967-dbb2e7ae23c3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T182343Z:7ad014c1-4c4e-4308-81a7-a71fd426cead" + "WESTUS:20170724T231359Z:c39fd7d4-b213-4667-8967-dbb2e7ae23c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -664,13 +675,14 @@ "StatusCode": 201 }, { - "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", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/29581545-d7d5-4421-8520-7667d6dd8e7f0?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzI5NTgxNTQ1LWQ3ZDUtNDQyMS04NTIwLTc2NjdkNmRkOGU3ZjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -688,7 +700,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:24:13 GMT" + "Mon, 24 Jul 2017 23:14:29 GMT" ], "Pragma": [ "no-cache" @@ -700,7 +712,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "deaf721a-a9e6-49fc-be9b-73b89c4c6bf1" + "b91886ee-f82d-4ff7-bcd4-235260ba231b" ], "X-Content-Type-Options": [ "nosniff" @@ -712,13 +724,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14993" ], "x-ms-correlation-request-id": [ - "a6b23a88-6282-4b90-aac0-d1c5b3a94ea8" + "ec68e684-7548-4131-81cb-6b6d6fe1b7bd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T182414Z:a6b23a88-6282-4b90-aac0-d1c5b3a94ea8" + "WESTUS:20170724T231430Z:ec68e684-7548-4131-81cb-6b6d6fe1b7bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -727,8 +739,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt5451?op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ1NDUxP29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt6803?write=true&op=CREATE&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ2ODAzP3dyaXRlPXRydWUmb3A9Q1JFQVRFJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -739,13 +751,14 @@ "42" ], "x-ms-client-request-id": [ - "dd2e06c2-c8ff-4d69-85e4-338037f5d750" + "9a5d7ffd-dffa-4ec5-95a4-c3f886250c0d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.3.0.0" ] }, "ResponseBody": "", @@ -760,22 +773,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:24:24 GMT" + "Mon, 24 Jul 2017 23:14:36 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs11929.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt5451?op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs11055.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt6803?write=true&op=CREATE&api-version=2016-11-01" ], "x-ms-request-id": [ - "23a3bc03-5ccc-4e46-a9c0-9be883913aa2" + "e2196aa6-5bc7-4920-958a-fc3392eb3459" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -790,22 +803,23 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt5451?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ1NDUxP29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt6803?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ2ODAzP29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4c3fa349-d0e7-4389-8a5d-3bec068758c9" + "f733b8e8-a658-45e2-9c0e-cbf45c5dc059" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.3.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1500938076810,\r\n \"modificationTime\": 1500938076848,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "305" @@ -820,16 +834,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:24:24 GMT" + "Mon, 24 Jul 2017 23:14:37 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "b89e53c7-5e1c-4b13-887b-8415fc5f616f" + "b391a218-456f-4982-9d15-4923d1088b1a" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -844,22 +858,23 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt5451?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ1NDUxP29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt6803?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ2ODAzP29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b78d0fc5-c6cf-4f5f-80fd-7a0f350be91a" + "34cc7b19-8a04-4c25-bd00-d861e8267c97" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.3.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder01/SDKTestFile01.txt6803 [22460a89-7b14-437e-9286-b3ed3889fec2][2017-07-24T16:14:37.7719141-07:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "258" @@ -874,16 +889,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:24:24 GMT" + "Mon, 24 Jul 2017 23:14:37 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "47b1166c-d30a-4ae7-bfc6-a5dc55400da0" + "22460a89-7b14-437e-9286-b3ed3889fec2" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x8309000A" @@ -898,19 +913,20 @@ "StatusCode": 404 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder015003?op=MKDIRS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNTAwMz9vcD1NS0RJUlMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder013431?op=MKDIRS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMzQzMT9vcD1NS0RJUlMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "af7ea475-0acd-4802-845c-949b2178b8be" + "0f8cae12-90d4-4d62-9ff1-afa2a008318e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.3.0.0" ] }, "ResponseBody": "{\r\n \"boolean\": true\r\n}", @@ -928,16 +944,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:24:24 GMT" + "Mon, 24 Jul 2017 23:14:37 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "d21633ea-5239-4055-a656-ee9673bac414" + "848b0b51-2ac5-4cba-9007-8cb042cf870a" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -952,19 +968,20 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt5451?destination=SDKTestFolder015003%2FSDKTestMoveFile01.txt&op=RENAME&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ1NDUxP2Rlc3RpbmF0aW9uPVNES1Rlc3RGb2xkZXIwMTUwMDMlMkZTREtUZXN0TW92ZUZpbGUwMS50eHQmb3A9UkVOQU1FJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt6803?destination=SDKTestFolder013431%2FSDKTestMoveFile01.txt&op=RENAME&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ2ODAzP2Rlc3RpbmF0aW9uPVNES1Rlc3RGb2xkZXIwMTM0MzElMkZTREtUZXN0TW92ZUZpbGUwMS50eHQmb3A9UkVOQU1FJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7cd7b056-0b07-483f-a0b1-2b8136501cff" + "8a7abec8-91d0-4700-bfbf-39157a615ede" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.3.0.0" ] }, "ResponseBody": "{\r\n \"boolean\": true\r\n}", @@ -982,16 +999,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:24:24 GMT" + "Mon, 24 Jul 2017 23:14:37 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "da43e98c-e77b-420f-aec5-2e6902418006" + "3e88bf94-bc13-4eef-b56c-7c3653c8dda3" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -1006,22 +1023,23 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder015003%2FSDKTestMoveFile01.txt?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNTAwMyUyRlNES1Rlc3RNb3ZlRmlsZTAxLnR4dD9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder013431%2FSDKTestMoveFile01.txt?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMzQzMSUyRlNES1Rlc3RNb3ZlRmlsZTAxLnR4dD9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c1beddf1-ac91-45d5-944b-ca285e2cbc8f" + "1bfd4f79-8625-4295-a3f0-b5bd05ecf6a3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.3.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1500938076810,\r\n \"modificationTime\": 1500938076848,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "305" @@ -1036,16 +1054,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:24:24 GMT" + "Mon, 24 Jul 2017 23:14:37 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "1fb49a53-b0f5-4507-9c3b-3a294777dddf" + "440ed16e-f9b7-4e2e-900d-72e6c4f6dd73" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -1060,19 +1078,20 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder015003?destination=SDKTestMoveFolder017643&op=RENAME&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNTAwMz9kZXN0aW5hdGlvbj1TREtUZXN0TW92ZUZvbGRlcjAxNzY0MyZvcD1SRU5BTUUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder013431?destination=SDKTestMoveFolder018867&op=RENAME&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMzQzMT9kZXN0aW5hdGlvbj1TREtUZXN0TW92ZUZvbGRlcjAxODg2NyZvcD1SRU5BTUUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3ade9e94-2599-4413-8662-aba4b949e886" + "18fa5981-50bc-4ee7-bcce-73e11a1cdd4a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.3.0.0" ] }, "ResponseBody": "{\r\n \"boolean\": true\r\n}", @@ -1090,16 +1109,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:24:24 GMT" + "Mon, 24 Jul 2017 23:14:37 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "7b64a9a4-1978-4cd0-ab31-2c2f2807ddaf" + "d0f8acc8-7838-47b7-9b9c-587009241829" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -1114,22 +1133,23 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestMoveFolder017643?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdE1vdmVGb2xkZXIwMTc2NDM/b3A9R0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestMoveFolder018867?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdE1vdmVGb2xkZXIwMTg4Njc/b3A9R0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0201e07c-7621-428f-8f59-01cdc4b8a85f" + "b92d7dea-6dc6-4c9c-91b4-33d09d500987" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.3.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"DIRECTORY\",\r\n \"blockSize\": 0,\r\n \"accessTime\": 1500938077403,\r\n \"modificationTime\": 1500938077554,\r\n \"replication\": 0,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "280" @@ -1144,16 +1164,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:24:24 GMT" + "Mon, 24 Jul 2017 23:14:38 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "47e39021-63c0-44be-ab0a-6b9f814a400d" + "7506391c-5e13-4263-9155-4efb522b633b" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -1168,22 +1188,23 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestMoveFolder017643?op=LISTSTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdE1vdmVGb2xkZXIwMTc2NDM/b3A9TElTVFNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestMoveFolder018867?op=LISTSTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdE1vdmVGb2xkZXIwMTg4Njc/b3A9TElTVFNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bf2955ce-e92a-4094-aa26-99c33dfd2866" + "f988b615-fb36-4196-a011-45b181018221" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.3.0.0" ] }, - "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}", + "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\": 1500938076810,\r\n \"modificationTime\": 1500938076848,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "345" @@ -1198,16 +1219,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:24:25 GMT" + "Mon, 24 Jul 2017 23:14:38 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "2e640f4f-309a-42b8-8b34-1f90cd8ff864" + "7f84729a-4c57-4c96-a6d8-cfe13ff5dfcb" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -1222,22 +1243,23 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder015003?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNTAwMz9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder013431?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMzQzMT9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2949cc2d-fca7-4f4d-acf7-21779796509f" + "c4778c53-f193-40f7-bb82-948c9664e2f7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.3.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder013431 [b6151399-8490-45c1-b547-0a240f357e44][2017-07-24T16:14:38.2719028-07:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "240" @@ -1252,16 +1274,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:24:25 GMT" + "Mon, 24 Jul 2017 23:14:38 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "c9944d76-33ed-4fd2-a8cf-7c34dedcdbb7" + "b6151399-8490-45c1-b547-0a240f357e44" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x8309000A" @@ -1278,21 +1300,21 @@ ], "Names": { ".ctor": [ - "datalakerg12776", - "testdatalake14538", - "testadlfs11929" + "datalakerg13201", + "testdatalake14358", + "testadlfs11055" ], "CreateFile": [ - "SDKTestFolder01/SDKTestFile01.txt5451" + "SDKTestFolder01/SDKTestFile01.txt6803" ], "CreateFolder": [ - "SDKTestFolder015003" + "SDKTestFolder013431" ], "DataLakeStoreFileSystemMoveFileAndFolder": [ - "SDKTestMoveFolder017643" + "SDKTestMoveFolder018867" ] }, "Variables": { - "SubscriptionId": "53d9063d-87ae-4ea8-be90-3686c3b8669f" + "SubscriptionId": "04319d6d-4a66-4701-bb2f-e7dbbd9ae4db" } } \ No newline at end of file diff --git a/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemMsConcatDeleteDir.json b/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemMsConcatDeleteDir.json index b8557d4dfd50..2865ce5d4d03 100644 --- a/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemMsConcatDeleteDir.json +++ b/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemMsConcatDeleteDir.json @@ -1,22 +1,23 @@ { "Entries": [ { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "112a35c4-6541-45ad-8409-49f04c9b5fc7" + "3940af41-a08f-4579-9ad5-fb9bd2c8091f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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" @@ -28,7 +29,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:06:32 GMT" + "Mon, 24 Jul 2017 22:44:24 GMT" ], "Pragma": [ "no-cache" @@ -40,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1195" ], "x-ms-request-id": [ - "c1bb9c50-bf2e-4974-be75-c1b659bfc2b1" + "766661d2-408e-4468-9b42-deba27c60daa" ], "x-ms-correlation-request-id": [ - "c1bb9c50-bf2e-4974-be75-c1b659bfc2b1" + "766661d2-408e-4468-9b42-deba27c60daa" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180633Z:c1bb9c50-bf2e-4974-be75-c1b659bfc2b1" + "WESTUS2:20170724T224424Z:766661d2-408e-4468-9b42-deba27c60daa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -58,22 +59,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b46cf2cf-6dbd-4c9a-906d-e11674faf1ae" + "c2b4779f-4017-472d-ad4d-2e184e1edaf1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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" @@ -85,7 +87,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:06:32 GMT" + "Mon, 24 Jul 2017 22:44:24 GMT" ], "Pragma": [ "no-cache" @@ -94,16 +96,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14987" ], "x-ms-request-id": [ - "614ae20b-2032-4a23-b7a9-6e7bc9355981" + "c5502695-8c6c-405d-8c85-f7390a45b3e3" ], "x-ms-correlation-request-id": [ - "614ae20b-2032-4a23-b7a9-6e7bc9355981" + "c5502695-8c6c-405d-8c85-f7390a45b3e3" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180633Z:614ae20b-2032-4a23-b7a9-6e7bc9355981" + "WESTUS2:20170724T224424Z:c5502695-8c6c-405d-8c85-f7390a45b3e3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -112,22 +114,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "827e8bf5-5a98-4dcd-9633-2891732a05e5" + "deeebaf5-6ed3-4b37-b529-8427ab8c486d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/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 \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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 \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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,7 +142,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:06:32 GMT" + "Mon, 24 Jul 2017 22:44:25 GMT" ], "Pragma": [ "no-cache" @@ -151,16 +154,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1194" ], "x-ms-request-id": [ - "08d08cd0-d4ea-47a7-9fa4-b4a8cb864816" + "9e311656-7b67-414b-a657-f090eae8fa09" ], "x-ms-correlation-request-id": [ - "08d08cd0-d4ea-47a7-9fa4-b4a8cb864816" + "9e311656-7b67-414b-a657-f090eae8fa09" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180633Z:08d08cd0-d4ea-47a7-9fa4-b4a8cb864816" + "WESTUS2:20170724T224425Z:9e311656-7b67-414b-a657-f090eae8fa09" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -169,22 +172,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7d4d7952-a2df-40ad-9592-60944f325a7a" + "7b947f86-824a-412a-8d24-f5f0826a0d23" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/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 \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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 \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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" @@ -196,7 +200,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:06:32 GMT" + "Mon, 24 Jul 2017 22:44:25 GMT" ], "Pragma": [ "no-cache" @@ -205,16 +209,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14986" ], "x-ms-request-id": [ - "9df88a4c-a67c-4c14-8549-bff8c45e1bd5" + "5d20496a-76ea-42ae-ad20-2eb5e2ec8516" ], "x-ms-correlation-request-id": [ - "9df88a4c-a67c-4c14-8549-bff8c45e1bd5" + "5d20496a-76ea-42ae-ad20-2eb5e2ec8516" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180633Z:9df88a4c-a67c-4c14-8549-bff8c45e1bd5" + "WESTUS2:20170724T224425Z:5d20496a-76ea-42ae-ad20-2eb5e2ec8516" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -223,22 +227,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11679?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTY3OT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg11291?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTI5MT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "26d078bb-5126-47bd-b6c9-6ffb42040c66" + "97f904f4-5521-41eb-bdcf-8dd998b78e86" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg11679' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg11291' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -253,7 +258,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:06:33 GMT" + "Mon, 24 Jul 2017 22:44:25 GMT" ], "Pragma": [ "no-cache" @@ -262,16 +267,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14985" ], "x-ms-request-id": [ - "8b72fe97-bbb3-4756-a110-efd2e335a413" + "f556f949-9b6c-4d6f-b06d-80730fbab865" ], "x-ms-correlation-request-id": [ - "8b72fe97-bbb3-4756-a110-efd2e335a413" + "f556f949-9b6c-4d6f-b06d-80730fbab865" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180633Z:8b72fe97-bbb3-4756-a110-efd2e335a413" + "WESTUS2:20170724T224425Z:f556f949-9b6c-4d6f-b06d-80730fbab865" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -280,22 +285,23 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11679?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTY3OT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg11291?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTI5MT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6a7d39ee-5887-497a-82da-721d328187a2" + "ac6d6f8b-25b7-4e3e-987a-f6d813ef4ade" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg11291\",\r\n \"name\": \"datalakerg11291\",\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 +313,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:06:34 GMT" + "Mon, 24 Jul 2017 22:44:28 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +322,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14984" ], "x-ms-request-id": [ - "1030a2a7-ee34-428e-a276-cdce2f65f651" + "4d358941-82c9-4531-8498-e8522e9c938c" ], "x-ms-correlation-request-id": [ - "1030a2a7-ee34-428e-a276-cdce2f65f651" + "4d358941-82c9-4531-8498-e8522e9c938c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180634Z:1030a2a7-ee34-428e-a276-cdce2f65f651" + "WESTUS2:20170724T224428Z:4d358941-82c9-4531-8498-e8522e9c938c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +340,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11679?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTY3OT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg11291?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTI5MT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,16 +352,17 @@ "31" ], "x-ms-client-request-id": [ - "e223afde-1305-4685-adf9-bd342052f947" + "c12a09ef-86da-4671-a0c4-5e80cfba7eb8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg11291\",\r\n \"name\": \"datalakerg11291\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -370,22 +377,22 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:06:33 GMT" + "Mon, 24 Jul 2017 22:44:28 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1193" ], "x-ms-request-id": [ - "70a8ae0b-3f7f-4ebe-8b55-8ffba6d20923" + "27b42548-c9d7-42d8-b6f1-44d6796663be" ], "x-ms-correlation-request-id": [ - "70a8ae0b-3f7f-4ebe-8b55-8ffba6d20923" + "27b42548-c9d7-42d8-b6f1-44d6796663be" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180634Z:70a8ae0b-3f7f-4ebe-8b55-8ffba6d20923" + "WESTUS2:20170724T224428Z:27b42548-c9d7-42d8-b6f1-44d6796663be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -394,22 +401,23 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11679/providers/Microsoft.DataLakeStore/accounts/testadlfs14042?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTY3OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTQwNDI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg11291/providers/Microsoft.DataLakeStore/accounts/testadlfs15505?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTI5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTU1MDU/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "54d5a8f7-5459-40ba-b4cf-381fb0e7e52c" + "f146dcd6-b501-44a4-8733-5875a9d7d1c4" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs15505' under resource group 'datalakerg11291' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "166" @@ -424,7 +432,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:06:35 GMT" + "Mon, 24 Jul 2017 22:44:27 GMT" ], "Pragma": [ "no-cache" @@ -433,13 +441,13 @@ "gateway" ], "x-ms-request-id": [ - "ccea031d-699a-4d13-95d1-22cfabc1404f" + "06d4ff00-8540-40e1-acbc-2eced979b04a" ], "x-ms-correlation-request-id": [ - "ccea031d-699a-4d13-95d1-22cfabc1404f" + "06d4ff00-8540-40e1-acbc-2eced979b04a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180635Z:ccea031d-699a-4d13-95d1-22cfabc1404f" + "WESTUS2:20170724T224428Z:06d4ff00-8540-40e1-acbc-2eced979b04a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -448,16 +456,17 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11679/providers/Microsoft.DataLakeStore/accounts/testadlfs14042?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTY3OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTQwNDI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg11291/providers/Microsoft.DataLakeStore/accounts/testadlfs15505?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTI5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTU1MDU/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"testadlfs15505.azuredatalakestore.net\",\r\n \"accountId\": \"5234d57f-15d4-4e4a-998c-0b9ee7aade6b\",\r\n \"creationTime\": \"2017-07-24T22:44:31.4004804Z\",\r\n \"lastModifiedTime\": \"2017-07-24T22:44:31.4004804Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg11291/providers/Microsoft.DataLakeStore/accounts/testadlfs15505\",\r\n \"name\": \"testadlfs15505\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -472,7 +481,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:07:07 GMT" + "Mon, 24 Jul 2017 22:45:04 GMT" ], "Pragma": [ "no-cache" @@ -484,7 +493,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "dfdc8dd6-cc96-4a95-9535-bbd253ca5ef1" + "0bfa3063-f5b5-48fe-a489-a453076353d3" ], "X-Content-Type-Options": [ "nosniff" @@ -496,13 +505,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14984" ], "x-ms-correlation-request-id": [ - "1b079c49-887c-4e48-81b2-d15e8d385d9f" + "4e88f27f-a88e-42a8-87ac-91dc294f1619" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180708Z:1b079c49-887c-4e48-81b2-d15e8d385d9f" + "WESTUS2:20170724T224505Z:4e88f27f-a88e-42a8-87ac-91dc294f1619" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -511,22 +520,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11679/providers/Microsoft.DataLakeStore/accounts/testadlfs14042?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTY3OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTQwNDI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg11291/providers/Microsoft.DataLakeStore/accounts/testadlfs15505?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTI5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTU1MDU/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cd246778-f1c2-407f-9561-b1bc7350906f" + "2c877853-de5d-4595-995a-5e219b782b82" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"testadlfs15505.azuredatalakestore.net\",\r\n \"accountId\": \"5234d57f-15d4-4e4a-998c-0b9ee7aade6b\",\r\n \"creationTime\": \"2017-07-24T22:44:31.4004804Z\",\r\n \"lastModifiedTime\": \"2017-07-24T22:44:31.4004804Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg11291/providers/Microsoft.DataLakeStore/accounts/testadlfs15505\",\r\n \"name\": \"testadlfs15505\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -541,7 +551,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:07:08 GMT" + "Mon, 24 Jul 2017 22:45:05 GMT" ], "Pragma": [ "no-cache" @@ -553,7 +563,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "b5e25a5e-a5c0-4203-b0f1-386f02d68683" + "67d95d63-f9d9-4195-b818-2d12795726e3" ], "X-Content-Type-Options": [ "nosniff" @@ -565,13 +575,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14987" ], "x-ms-correlation-request-id": [ - "df2df093-c5ce-43fa-8ff7-6cc1fa51e032" + "c2f71a3c-0590-4cee-9ded-fb7efdc01ca7" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180708Z:df2df093-c5ce-43fa-8ff7-6cc1fa51e032" + "WESTUS2:20170724T224505Z:c2f71a3c-0590-4cee-9ded-fb7efdc01ca7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -580,8 +590,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11679/providers/Microsoft.DataLakeStore/accounts/testadlfs14042?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTY3OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTQwNDI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg11291/providers/Microsoft.DataLakeStore/accounts/testadlfs15505?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTI5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTU1MDU/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -592,16 +602,17 @@ "31" ], "x-ms-client-request-id": [ - "b1d8f0c6-19f9-4896-a645-42675c79e7f2" + "5019d033-ccea-47ce-b2fc-3e9030ab5537" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"5234d57f-15d4-4e4a-998c-0b9ee7aade6b\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg11291/providers/Microsoft.DataLakeStore/accounts/testadlfs15505\",\r\n \"name\": \"testadlfs15505\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "420" @@ -619,13 +630,13 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:06:37 GMT" + "Mon, 24 Jul 2017 22:44:29 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11679/providers/Microsoft.DataLakeStore/accounts/testadlfs14042/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg11291/providers/Microsoft.DataLakeStore/accounts/testadlfs15505/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -634,10 +645,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "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" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/5234d57f-15d4-4e4a-998c-0b9ee7aade6b0?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "216eca94-2cd4-4be9-850b-9d43456cdf36" + "c7e06187-8f15-4ab2-9dff-f4b9de31285c" ], "X-Content-Type-Options": [ "nosniff" @@ -652,10 +663,10 @@ "1197" ], "x-ms-correlation-request-id": [ - "9eb1dd72-805e-47c6-94e2-69ee9a3bad91" + "e0c7208b-2c4c-4250-b503-b346d0f06e82" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180637Z:9eb1dd72-805e-47c6-94e2-69ee9a3bad91" + "WESTUS2:20170724T224430Z:e0c7208b-2c4c-4250-b503-b346d0f06e82" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -664,13 +675,14 @@ "StatusCode": 201 }, { - "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", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/5234d57f-15d4-4e4a-998c-0b9ee7aade6b0?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzUyMzRkNTdmLTE1ZDQtNGU0YS05OThjLTBiOWVlN2FhZGU2YjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -688,7 +700,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:07:06 GMT" + "Mon, 24 Jul 2017 22:45:03 GMT" ], "Pragma": [ "no-cache" @@ -700,7 +712,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "448aea7a-21d2-49c9-b758-6eb6d6fb27af" + "6e519df1-eb28-407f-b0e4-cbc5b52e46c5" ], "X-Content-Type-Options": [ "nosniff" @@ -712,13 +724,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14989" ], "x-ms-correlation-request-id": [ - "37cea37a-c990-47d6-92b0-d1b87b0a3f30" + "b4941aca-c860-4483-83d1-773afc97e553" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T180707Z:37cea37a-c990-47d6-92b0-d1b87b0a3f30" + "WESTUS2:20170724T224503Z:b4941aca-c860-4483-83d1-773afc97e553" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -727,8 +739,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FmsconcatFolder%2FSDKTestFile01.txt6843?op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGbXNjb25jYXRGb2xkZXIlMkZTREtUZXN0RmlsZTAxLnR4dDY4NDM/b3A9Q1JFQVRFJndyaXRlPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FmsconcatFolder%2FSDKTestFile01.txt4214?write=true&op=CREATE&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGbXNjb25jYXRGb2xkZXIlMkZTREtUZXN0RmlsZTAxLnR4dDQyMTQ/d3JpdGU9dHJ1ZSZvcD1DUkVBVEUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -739,13 +751,14 @@ "42" ], "x-ms-client-request-id": [ - "3427b49c-8093-4c77-bad7-b2bfc4719560" + "00ee8a2f-7c66-4a3b-819b-3ddbaba4a614" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "", @@ -760,22 +773,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:07:11 GMT" + "Mon, 24 Jul 2017 22:45:08 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs14042.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/msconcatFolder/SDKTestFile01.txt6843?op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs15505.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/msconcatFolder/SDKTestFile01.txt4214?write=true&op=CREATE&api-version=2016-11-01" ], "x-ms-request-id": [ - "6c6b41ee-aef0-49f9-997b-8a45dacab91b" + "92c3acc8-4278-487a-83ef-3ccc4b5dea3a" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -790,22 +803,23 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FmsconcatFolder%2FSDKTestFile01.txt6843?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGbXNjb25jYXRGb2xkZXIlMkZTREtUZXN0RmlsZTAxLnR4dDY4NDM/b3A9R0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FmsconcatFolder%2FSDKTestFile01.txt4214?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGbXNjb25jYXRGb2xkZXIlMkZTREtUZXN0RmlsZTAxLnR4dDQyMTQ/b3A9R0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4db5dab1-710e-46fd-b9ca-a8b53e602645" + "3868a201-5899-4a28-95b5-a9012ef57cc9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1500936308894,\r\n \"modificationTime\": 1500936308934,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "305" @@ -820,16 +834,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:07:11 GMT" + "Mon, 24 Jul 2017 22:45:08 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "5a9051b2-1d91-4f27-b097-5015b04c50c5" + "49a24f68-8013-4af5-858c-4a085d58b0a9" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -844,22 +858,23 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FmsconcatFolder%2FSDKTestFile01.txt6843?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGbXNjb25jYXRGb2xkZXIlMkZTREtUZXN0RmlsZTAxLnR4dDY4NDM/b3A9R0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FmsconcatFolder%2FSDKTestFile01.txt4214?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGbXNjb25jYXRGb2xkZXIlMkZTREtUZXN0RmlsZTAxLnR4dDQyMTQ/b3A9R0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "495eb0f1-94e5-4b91-ad60-9b21163edb56" + "ba27e7ec-2e5e-4e06-98ab-617754e72f48" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder01/msconcatFolder/SDKTestFile01.txt4214 [81719c81-8547-41db-99be-d3aa06c0c669][2017-07-24T15:45:10.1546698-07:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "273" @@ -874,16 +889,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:07:12 GMT" + "Mon, 24 Jul 2017 22:45:09 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "556455d1-9671-4cd3-a66a-f606caae1891" + "81719c81-8547-41db-99be-d3aa06c0c669" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x8309000A" @@ -898,8 +913,8 @@ "StatusCode": 404 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FmsconcatFolder%2FSDKTestFile01.txt2462?op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGbXNjb25jYXRGb2xkZXIlMkZTREtUZXN0RmlsZTAxLnR4dDI0NjI/b3A9Q1JFQVRFJndyaXRlPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FmsconcatFolder%2FSDKTestFile01.txt6105?write=true&op=CREATE&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGbXNjb25jYXRGb2xkZXIlMkZTREtUZXN0RmlsZTAxLnR4dDYxMDU/d3JpdGU9dHJ1ZSZvcD1DUkVBVEUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -910,13 +925,14 @@ "42" ], "x-ms-client-request-id": [ - "0911d6ae-8e48-4ed4-8657-d41c1cd5a77f" + "26136d28-c11c-4e87-9642-d027f50f4a7f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "", @@ -931,22 +947,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:07:11 GMT" + "Mon, 24 Jul 2017 22:45:08 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs14042.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/msconcatFolder/SDKTestFile01.txt2462?op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs15505.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/msconcatFolder/SDKTestFile01.txt6105?write=true&op=CREATE&api-version=2016-11-01" ], "x-ms-request-id": [ - "61971e58-9fbb-482b-b98e-5e87f1695284" + "4595263e-ff73-4861-87d8-ed78c3d7db9c" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -961,22 +977,23 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FmsconcatFolder%2FSDKTestFile01.txt2462?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGbXNjb25jYXRGb2xkZXIlMkZTREtUZXN0RmlsZTAxLnR4dDI0NjI/b3A9R0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FmsconcatFolder%2FSDKTestFile01.txt6105?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGbXNjb25jYXRGb2xkZXIlMkZTREtUZXN0RmlsZTAxLnR4dDYxMDU/b3A9R0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9e2e509d-253e-4a7c-8454-2c1d3f8686bb" + "5ee3b317-9bde-47d9-bfb7-f4703be432de" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1500936309428,\r\n \"modificationTime\": 1500936309499,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "305" @@ -991,16 +1008,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:07:11 GMT" + "Mon, 24 Jul 2017 22:45:08 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "6d38dec3-1071-44ef-9b50-2ad21351cfe7" + "f108dff8-cc44-49cf-b4f6-07f24a179710" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -1015,22 +1032,23 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FmsconcatFolder%2FSDKTestFile01.txt2462?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGbXNjb25jYXRGb2xkZXIlMkZTREtUZXN0RmlsZTAxLnR4dDI0NjI/b3A9R0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FmsconcatFolder%2FSDKTestFile01.txt6105?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGbXNjb25jYXRGb2xkZXIlMkZTREtUZXN0RmlsZTAxLnR4dDYxMDU/b3A9R0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5bc28079-6d4d-475a-9278-da801341677e" + "90945425-4ce4-4c82-a498-ce3942640382" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder01/msconcatFolder/SDKTestFile01.txt6105 [8ae89933-cd01-428a-8628-b9f6f175635d][2017-07-24T15:45:10.2484200-07:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "273" @@ -1045,16 +1063,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:07:12 GMT" + "Mon, 24 Jul 2017 22:45:09 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "b9e07c01-b8a9-4c58-a070-3ac14c28c080" + "8ae89933-cd01-428a-8628-b9f6f175635d" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x8309000A" @@ -1069,19 +1087,20 @@ "StatusCode": 404 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019066?op=MKDIRS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTA2Nj9vcD1NS0RJUlMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder015784?op=MKDIRS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNTc4ND9vcD1NS0RJUlMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f16e3684-db6e-4536-83b7-5e4152f61b18" + "58f184a7-6ed3-468b-9a46-5590f6640152" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "{\r\n \"boolean\": true\r\n}", @@ -1099,16 +1118,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:07:11 GMT" + "Mon, 24 Jul 2017 22:45:08 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "8a7e01e7-4a92-4cc5-b3a5-7e66c58bf2df" + "3f438aa1-f0e6-4ccd-918e-348cd8d62d41" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -1123,10 +1142,10 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019066%2FSDKTestConcatFile01.txt?deleteSourceDirectory=true&op=MSCONCAT&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTA2NiUyRlNES1Rlc3RDb25jYXRGaWxlMDEudHh0P2RlbGV0ZVNvdXJjZURpcmVjdG9yeT10cnVlJm9wPU1TQ09OQ0FUJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder015784%2FSDKTestConcatFile01.txt?deleteSourceDirectory=true&op=MSCONCAT&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNTc4NCUyRlNES1Rlc3RDb25jYXRGaWxlMDEudHh0P2RlbGV0ZVNvdXJjZURpcmVjdG9yeT10cnVlJm9wPU1TQ09OQ0FUJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "POST", - "RequestBody": "sources=SDKTestFolder01/msconcatFolder/SDKTestFile01.txt6843,SDKTestFolder01/msconcatFolder/SDKTestFile01.txt2462", + "RequestBody": "sources=SDKTestFolder01/msconcatFolder/SDKTestFile01.txt4214,SDKTestFolder01/msconcatFolder/SDKTestFile01.txt6105", "RequestHeaders": { "Content-Type": [ "application/octet-stream" @@ -1135,13 +1154,14 @@ "113" ], "x-ms-client-request-id": [ - "64d2a9ba-b695-4ae9-9c9d-f73b62d72968" + "c6587d8e-a14c-4cd8-bac2-6257ae02dbf4" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "", @@ -1156,16 +1176,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:07:12 GMT" + "Mon, 24 Jul 2017 22:45:09 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "b5e15fa8-9386-4f32-b9db-3e152d77f758" + "cb3fa790-8fec-4a15-a7c0-23248f6cec31" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -1180,22 +1200,23 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019066%2FSDKTestConcatFile01.txt?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTA2NiUyRlNES1Rlc3RDb25jYXRGaWxlMDEudHh0P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder015784%2FSDKTestConcatFile01.txt?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNTc4NCUyRlNES1Rlc3RDb25jYXRGaWxlMDEudHh0P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "68d6d5ab-5923-4fe2-9d91-166c9d896f71" + "0795a126-1014-4e61-9eea-e8b862283613" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 84,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1500936309898,\r\n \"modificationTime\": 1500936309916,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "305" @@ -1210,16 +1231,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:07:12 GMT" + "Mon, 24 Jul 2017 22:45:09 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "5b362a5b-cc55-42f5-9596-5e14c4a1f850" + "8254cd02-699c-4803-96b6-04ba8ed842cf" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -1240,16 +1261,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c5af4b01-34f7-4c59-8c56-b357f0007e12" + "b31621bc-c29b-40c5-b2f9-a2e8a3bc7ccc" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder01/msconcatFolder [835fe993-96e7-4069-ab95-4d070f957905][2017-07-24T15:45:10.3421724-07:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "251" @@ -1264,16 +1286,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:07:12 GMT" + "Mon, 24 Jul 2017 22:45:09 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "1a2e882a-53c7-403d-b430-dd7c91464850" + "835fe993-96e7-4069-ab95-4d070f957905" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x8309000A" @@ -1290,19 +1312,19 @@ ], "Names": { ".ctor": [ - "datalakerg11679", - "testdatalake15445", - "testadlfs14042" + "datalakerg11291", + "testdatalake16520", + "testadlfs15505" ], "CreateFile": [ - "SDKTestFolder01/msconcatFolder/SDKTestFile01.txt6843", - "SDKTestFolder01/msconcatFolder/SDKTestFile01.txt2462" + "SDKTestFolder01/msconcatFolder/SDKTestFile01.txt4214", + "SDKTestFolder01/msconcatFolder/SDKTestFile01.txt6105" ], "CreateFolder": [ - "SDKTestFolder019066" + "SDKTestFolder015784" ] }, "Variables": { - "SubscriptionId": "53d9063d-87ae-4ea8-be90-3686c3b8669f" + "SubscriptionId": "04319d6d-4a66-4701-bb2f-e7dbbd9ae4db" } } \ No newline at end of file diff --git a/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemMsConcatenateFiles.json b/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemMsConcatenateFiles.json index a1b94f6315e2..72c721395b0e 100644 --- a/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemMsConcatenateFiles.json +++ b/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemMsConcatenateFiles.json @@ -1,22 +1,23 @@ { "Entries": [ { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "29919c23-63e1-4bec-8ff0-2b472fc8593f" + "b6f3ae31-c3bf-4628-8849-b00503ef42cc" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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" @@ -28,7 +29,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:43:14 GMT" + "Mon, 24 Jul 2017 23:11:48 GMT" ], "Pragma": [ "no-cache" @@ -40,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1199" ], "x-ms-request-id": [ - "aed14a85-8a7a-4de1-9101-915b2c906be4" + "5d76d06c-29c8-4e19-b36c-0993ce1f81b8" ], "x-ms-correlation-request-id": [ - "aed14a85-8a7a-4de1-9101-915b2c906be4" + "5d76d06c-29c8-4e19-b36c-0993ce1f81b8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T184314Z:aed14a85-8a7a-4de1-9101-915b2c906be4" + "WESTUS:20170724T231149Z:5d76d06c-29c8-4e19-b36c-0993ce1f81b8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -58,22 +59,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "67116321-1338-4f64-8610-6620ff4cce42" + "8cbc792b-1e4f-40af-99fe-2c134c9a019f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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" @@ -85,7 +87,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:43:14 GMT" + "Mon, 24 Jul 2017 23:11:48 GMT" ], "Pragma": [ "no-cache" @@ -94,16 +96,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14991" ], "x-ms-request-id": [ - "4f6f2902-c2b1-436f-a9eb-bcaa8d314a73" + "309c5be0-7829-4e01-bafb-be0be4c73271" ], "x-ms-correlation-request-id": [ - "4f6f2902-c2b1-436f-a9eb-bcaa8d314a73" + "309c5be0-7829-4e01-bafb-be0be4c73271" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T184315Z:4f6f2902-c2b1-436f-a9eb-bcaa8d314a73" + "WESTUS:20170724T231149Z:309c5be0-7829-4e01-bafb-be0be4c73271" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -112,22 +114,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6e4b6bb8-37bc-46f8-b1ad-536fee441c47" + "b60ef4a9-2374-4c62-8f14-f16206aa36f6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/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 \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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 \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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,7 +142,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:43:14 GMT" + "Mon, 24 Jul 2017 23:11:49 GMT" ], "Pragma": [ "no-cache" @@ -151,16 +154,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1198" ], "x-ms-request-id": [ - "bd2346ff-2e24-4454-bf66-23eb60318a90" + "46541d7e-6fd3-4b14-8981-0ad65002327f" ], "x-ms-correlation-request-id": [ - "bd2346ff-2e24-4454-bf66-23eb60318a90" + "46541d7e-6fd3-4b14-8981-0ad65002327f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T184315Z:bd2346ff-2e24-4454-bf66-23eb60318a90" + "WESTUS:20170724T231150Z:46541d7e-6fd3-4b14-8981-0ad65002327f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -169,22 +172,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e015b4e7-c044-4620-8a2f-762da456a535" + "98b6b918-4aaa-4210-9cc7-d24bda5d6cb4" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/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 \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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 \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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" @@ -196,7 +200,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:43:15 GMT" + "Mon, 24 Jul 2017 23:11:49 GMT" ], "Pragma": [ "no-cache" @@ -205,16 +209,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14990" ], "x-ms-request-id": [ - "88f1423e-7517-4a4f-92a4-09f64337e03c" + "0fcd4c28-73cc-4096-a5e6-3571c6fe4cc4" ], "x-ms-correlation-request-id": [ - "88f1423e-7517-4a4f-92a4-09f64337e03c" + "0fcd4c28-73cc-4096-a5e6-3571c6fe4cc4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T184315Z:88f1423e-7517-4a4f-92a4-09f64337e03c" + "WESTUS:20170724T231150Z:0fcd4c28-73cc-4096-a5e6-3571c6fe4cc4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -223,25 +227,26 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13347?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzM0Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg1750?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzUwP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "55843cbe-c272-40a9-8f11-5064836f28bc" + "b51a53c5-e2a3-46ec-9d6b-1ad5e0991e05" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg13347' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg1750' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "107" + "106" ], "Content-Type": [ "application/json; charset=utf-8" @@ -253,7 +258,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:43:15 GMT" + "Mon, 24 Jul 2017 23:11:49 GMT" ], "Pragma": [ "no-cache" @@ -262,16 +267,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14989" ], "x-ms-request-id": [ - "7f5cda58-d551-42ac-a944-962d4ccf1ae9" + "de4b98ac-2e75-4516-9c25-395d413afeab" ], "x-ms-correlation-request-id": [ - "7f5cda58-d551-42ac-a944-962d4ccf1ae9" + "de4b98ac-2e75-4516-9c25-395d413afeab" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T184315Z:7f5cda58-d551-42ac-a944-962d4ccf1ae9" + "WESTUS:20170724T231150Z:de4b98ac-2e75-4516-9c25-395d413afeab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -280,22 +285,23 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13347?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzM0Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg1750?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzUwP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5c0646aa-4d8e-42b1-b2e3-8c0126017b5e" + "b68ae222-c3b9-4bc1-ad80-aa6b2bee501e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg1750\",\r\n \"name\": \"datalakerg1750\",\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 +313,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:43:16 GMT" + "Mon, 24 Jul 2017 23:11:51 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +322,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14988" ], "x-ms-request-id": [ - "e9b3e7aa-2a07-437e-90a0-57d95887e13e" + "2510a190-6df9-45f1-9498-e11f25453165" ], "x-ms-correlation-request-id": [ - "e9b3e7aa-2a07-437e-90a0-57d95887e13e" + "2510a190-6df9-45f1-9498-e11f25453165" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T184316Z:e9b3e7aa-2a07-437e-90a0-57d95887e13e" + "WESTUS:20170724T231151Z:2510a190-6df9-45f1-9498-e11f25453165" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +340,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13347?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzM0Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg1750?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzUwP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,19 +352,20 @@ "31" ], "x-ms-client-request-id": [ - "e1fce4af-d548-497a-ab92-4411864f0aa1" + "14638901-d51a-405d-b996-486c5d3f8c05" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg1750\",\r\n \"name\": \"datalakerg1750\",\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" @@ -370,22 +377,22 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:43:15 GMT" + "Mon, 24 Jul 2017 23:11:50 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1197" ], "x-ms-request-id": [ - "ccfba5d1-3ba5-4926-8217-c2826d41fd9e" + "40513e43-308d-4bde-b1cd-ffd5fa97835c" ], "x-ms-correlation-request-id": [ - "ccfba5d1-3ba5-4926-8217-c2826d41fd9e" + "40513e43-308d-4bde-b1cd-ffd5fa97835c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T184316Z:ccfba5d1-3ba5-4926-8217-c2826d41fd9e" + "WESTUS:20170724T231151Z:40513e43-308d-4bde-b1cd-ffd5fa97835c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -394,25 +401,26 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13347/providers/Microsoft.DataLakeStore/accounts/testadlfs12542?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzM0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTI1NDI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg1750/providers/Microsoft.DataLakeStore/accounts/testadlfs1482?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxNDgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5f6edd15-63f8-4447-9903-1bda948be666" + "9bca1b24-845f-4e4b-93f5-0c810b9e91ae" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs1482' under resource group 'datalakerg1750' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "166" + "164" ], "Content-Type": [ "application/json; charset=utf-8" @@ -424,7 +432,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:43:17 GMT" + "Mon, 24 Jul 2017 23:11:52 GMT" ], "Pragma": [ "no-cache" @@ -433,13 +441,13 @@ "gateway" ], "x-ms-request-id": [ - "f87bdb0b-feb5-4faa-903e-75b4e9085d8b" + "70a9d03f-80ca-44ee-97a2-32d42e7f39f5" ], "x-ms-correlation-request-id": [ - "f87bdb0b-feb5-4faa-903e-75b4e9085d8b" + "70a9d03f-80ca-44ee-97a2-32d42e7f39f5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T184317Z:f87bdb0b-feb5-4faa-903e-75b4e9085d8b" + "WESTUS:20170724T231152Z:70a9d03f-80ca-44ee-97a2-32d42e7f39f5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -448,16 +456,17 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13347/providers/Microsoft.DataLakeStore/accounts/testadlfs12542?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzM0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTI1NDI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg1750/providers/Microsoft.DataLakeStore/accounts/testadlfs1482?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxNDgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"testadlfs1482.azuredatalakestore.net\",\r\n \"accountId\": \"39948448-367c-4c8f-be12-a3a37527be6c\",\r\n \"creationTime\": \"2017-07-24T23:11:57.2048533Z\",\r\n \"lastModifiedTime\": \"2017-07-24T23:11:57.2048533Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg1750/providers/Microsoft.DataLakeStore/accounts/testadlfs1482\",\r\n \"name\": \"testadlfs1482\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -472,7 +481,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:43:50 GMT" + "Mon, 24 Jul 2017 23:12:25 GMT" ], "Pragma": [ "no-cache" @@ -484,7 +493,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "0de91aef-c1d9-439b-b098-0901c10ad51f" + "adb3ad34-1c29-45b9-9241-ad04b6dd4a46" ], "X-Content-Type-Options": [ "nosniff" @@ -496,13 +505,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14926" ], "x-ms-correlation-request-id": [ - "41f04180-6c89-4fec-88f7-ed0507e65f81" + "aa15c60c-0af5-45f3-a6ce-649894bf5517" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T184350Z:41f04180-6c89-4fec-88f7-ed0507e65f81" + "WESTUS:20170724T231226Z:aa15c60c-0af5-45f3-a6ce-649894bf5517" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -511,22 +520,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13347/providers/Microsoft.DataLakeStore/accounts/testadlfs12542?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzM0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTI1NDI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg1750/providers/Microsoft.DataLakeStore/accounts/testadlfs1482?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxNDgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "33cdb3f6-d1e7-4b79-bebb-0b5e1c0f9de0" + "73dd84d2-cf3d-4542-9330-a0712261f575" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"testadlfs1482.azuredatalakestore.net\",\r\n \"accountId\": \"39948448-367c-4c8f-be12-a3a37527be6c\",\r\n \"creationTime\": \"2017-07-24T23:11:57.2048533Z\",\r\n \"lastModifiedTime\": \"2017-07-24T23:11:57.2048533Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg1750/providers/Microsoft.DataLakeStore/accounts/testadlfs1482\",\r\n \"name\": \"testadlfs1482\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -541,7 +551,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:43:49 GMT" + "Mon, 24 Jul 2017 23:12:26 GMT" ], "Pragma": [ "no-cache" @@ -553,7 +563,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "62850000-c821-4207-89a3-349a86e60c17" + "521b599b-0ec4-4e0e-8d6d-9a34961c6dac" ], "X-Content-Type-Options": [ "nosniff" @@ -565,13 +575,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14989" ], "x-ms-correlation-request-id": [ - "d1ad6000-3c83-412b-b3e9-db27f88e36d1" + "9f6a8c68-f791-4f3e-aa75-fed1754d4735" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T184350Z:d1ad6000-3c83-412b-b3e9-db27f88e36d1" + "WESTUS:20170724T231227Z:9f6a8c68-f791-4f3e-aa75-fed1754d4735" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -580,8 +590,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13347/providers/Microsoft.DataLakeStore/accounts/testadlfs12542?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzM0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTI1NDI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg1750/providers/Microsoft.DataLakeStore/accounts/testadlfs1482?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxNDgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -592,19 +602,20 @@ "31" ], "x-ms-client-request-id": [ - "61a47cc2-5496-4d69-90b6-c9f4165fab69" + "d51d460d-c05d-46e1-bc6d-50139e2b971e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"39948448-367c-4c8f-be12-a3a37527be6c\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg1750/providers/Microsoft.DataLakeStore/accounts/testadlfs1482\",\r\n \"name\": \"testadlfs1482\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "420" + "417" ], "Content-Type": [ "application/json" @@ -619,13 +630,13 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:43:18 GMT" + "Mon, 24 Jul 2017 23:11:54 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13347/providers/Microsoft.DataLakeStore/accounts/testadlfs12542/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg1750/providers/Microsoft.DataLakeStore/accounts/testadlfs1482/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -634,10 +645,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "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" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/39948448-367c-4c8f-be12-a3a37527be6c0?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "3b7c6e66-3939-4d24-9914-a0f3aac7776c" + "749f7f13-7a40-434d-ae0d-f8e9412c493b" ], "X-Content-Type-Options": [ "nosniff" @@ -649,13 +660,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1197" ], "x-ms-correlation-request-id": [ - "23617e19-d227-453f-b9c7-86bf0811accf" + "068b46d7-12c2-4f58-b6a4-4fce5f8ca658" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T184318Z:23617e19-d227-453f-b9c7-86bf0811accf" + "WESTUS:20170724T231155Z:068b46d7-12c2-4f58-b6a4-4fce5f8ca658" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -664,13 +675,14 @@ "StatusCode": 201 }, { - "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", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/39948448-367c-4c8f-be12-a3a37527be6c0?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzM5OTQ4NDQ4LTM2N2MtNGM4Zi1iZTEyLWEzYTM3NTI3YmU2YzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -688,7 +700,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:43:48 GMT" + "Mon, 24 Jul 2017 23:12:25 GMT" ], "Pragma": [ "no-cache" @@ -700,7 +712,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "7591948a-504f-4515-ae6f-463f3d53beb5" + "fc0486b7-450e-459c-b52a-d77450abb6ce" ], "X-Content-Type-Options": [ "nosniff" @@ -712,13 +724,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14990" ], "x-ms-correlation-request-id": [ - "f1b0c63a-1a73-46c4-88e1-95ec9f9162ae" + "3c0248ba-c328-45f6-aa50-fc37c861bd1e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T184349Z:f1b0c63a-1a73-46c4-88e1-95ec9f9162ae" + "WESTUS:20170724T231225Z:3c0248ba-c328-45f6-aa50-fc37c861bd1e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -727,8 +739,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt9567?op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ5NTY3P29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt6720?write=true&op=CREATE&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ2NzIwP3dyaXRlPXRydWUmb3A9Q1JFQVRFJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -739,13 +751,14 @@ "42" ], "x-ms-client-request-id": [ - "67631ebc-8a5c-488b-88bd-df6804696c8d" + "7d1d7ce6-db04-400e-8e62-0900ddf8ac61" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "", @@ -760,22 +773,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:43:56 GMT" + "Mon, 24 Jul 2017 23:12:34 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs12542.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt9567?op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs1482.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt6720?write=true&op=CREATE&api-version=2016-11-01" ], "x-ms-request-id": [ - "76bad24c-1102-4325-89b4-1ff2c518af13" + "231c7651-399d-4365-ad2f-89224f62cb8b" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -790,22 +803,23 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt9567?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ5NTY3P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt6720?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ2NzIwP29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6e8191e5-aec0-4911-b981-7bd4c833f81a" + "67a12c00-33aa-4301-863b-4c0600e5a265" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1500937954719,\r\n \"modificationTime\": 1500937954772,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "305" @@ -820,16 +834,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:43:56 GMT" + "Mon, 24 Jul 2017 23:12:34 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "5c8f6fb2-4024-45b8-8e32-5037f9c82aad" + "7f8fdbaf-37be-45dd-8d4e-a1f5605ab0f9" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -844,22 +858,23 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt9567?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ5NTY3P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt6720?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ2NzIwP29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2793d516-2e13-4832-aede-fd6672cceba1" + "51ec3cfe-fdb9-40f1-8750-d513f7a8d187" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder01/SDKTestFile01.txt6720 [6e37a039-1ea0-4cf0-b256-73c0fc1155ee][2017-07-24T16:12:37.0266050-07:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "258" @@ -874,16 +889,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:43:57 GMT" + "Mon, 24 Jul 2017 23:12:36 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "3400f4a5-36e9-49c9-b3bf-ee002f4745b6" + "6e37a039-1ea0-4cf0-b256-73c0fc1155ee" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x8309000A" @@ -898,8 +913,8 @@ "StatusCode": 404 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt2924?op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQyOTI0P29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt4502?write=true&op=CREATE&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ0NTAyP3dyaXRlPXRydWUmb3A9Q1JFQVRFJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -910,13 +925,14 @@ "42" ], "x-ms-client-request-id": [ - "4943f721-0a07-473b-9e39-372c88418292" + "6f04b23a-1aac-4b8f-96d6-254e9a3bc119" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "", @@ -931,22 +947,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:43:56 GMT" + "Mon, 24 Jul 2017 23:12:35 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs12542.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt2924?op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs1482.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt4502?write=true&op=CREATE&api-version=2016-11-01" ], "x-ms-request-id": [ - "f27d6061-cd0f-4a99-8fe2-a3efd1228d6b" + "d5cc5029-db8a-43a1-8486-88962b9832d7" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -961,22 +977,23 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt2924?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQyOTI0P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt4502?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ0NTAyP29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "155dddb8-4a13-4663-8f99-1bdbdc1f4051" + "f3fc06c1-933c-41bc-af6c-ac69174c42c8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1500937955967,\r\n \"modificationTime\": 1500937956026,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "305" @@ -991,16 +1008,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:43:56 GMT" + "Mon, 24 Jul 2017 23:12:35 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "038e9053-890b-402f-aa70-171e22154cfe" + "cdb31c7c-6e16-4799-9ff4-7e9ecf437d64" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -1015,22 +1032,23 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt2924?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQyOTI0P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt4502?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ0NTAyP29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "384091bb-53c2-4350-8020-eb1d6ff4de04" + "ff94c07d-48d2-40b9-897f-0a2dcf0f986c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder01/SDKTestFile01.txt4502 [854118f9-e896-4464-8d3b-635c60c5140c][2017-07-24T16:12:37.1203557-07:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "258" @@ -1045,16 +1063,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:43:57 GMT" + "Mon, 24 Jul 2017 23:12:36 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "1ab81c23-203b-447d-bc4d-4566c791ec0b" + "854118f9-e896-4464-8d3b-635c60c5140c" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x8309000A" @@ -1069,19 +1087,20 @@ "StatusCode": 404 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder018274?op=MKDIRS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxODI3ND9vcD1NS0RJUlMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder016979?op=MKDIRS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNjk3OT9vcD1NS0RJUlMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9faafb60-b59a-4042-b662-99613e24277d" + "0d3c4907-cd90-40cf-8b93-1bd56978da68" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "{\r\n \"boolean\": true\r\n}", @@ -1099,16 +1118,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:43:56 GMT" + "Mon, 24 Jul 2017 23:12:35 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "00b353a8-a994-4e9b-8d1e-37174f214a9d" + "724566e5-dfe6-43d3-b9c9-d94a9f7bc00c" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -1123,10 +1142,10 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder018274%2FSDKTestConcatFile01.txt?op=MSCONCAT&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxODI3NCUyRlNES1Rlc3RDb25jYXRGaWxlMDEudHh0P29wPU1TQ09OQ0FUJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder016979%2FSDKTestConcatFile01.txt?op=MSCONCAT&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNjk3OSUyRlNES1Rlc3RDb25jYXRGaWxlMDEudHh0P29wPU1TQ09OQ0FUJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "POST", - "RequestBody": "sources=SDKTestFolder01/SDKTestFile01.txt9567,SDKTestFolder01/SDKTestFile01.txt2924", + "RequestBody": "sources=SDKTestFolder01/SDKTestFile01.txt6720,SDKTestFolder01/SDKTestFile01.txt4502", "RequestHeaders": { "Content-Type": [ "application/octet-stream" @@ -1135,13 +1154,14 @@ "83" ], "x-ms-client-request-id": [ - "00f17fed-48ad-4ee7-b507-64cd9f68827c" + "8944781f-3a4e-44dc-a04a-ffc7570188ec" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "", @@ -1156,16 +1176,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:43:57 GMT" + "Mon, 24 Jul 2017 23:12:35 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "7afefe66-0217-4ae8-b367-2cf51be8ca74" + "efd11979-c1e3-45b2-a73d-94c5291cdead" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -1180,22 +1200,23 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder018274%2FSDKTestConcatFile01.txt?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxODI3NCUyRlNES1Rlc3RDb25jYXRGaWxlMDEudHh0P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder016979%2FSDKTestConcatFile01.txt?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNjk3OSUyRlNES1Rlc3RDb25jYXRGaWxlMDEudHh0P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "40a7429a-4805-4162-8719-31bda07e27ef" + "3dc70b78-7eb7-48a9-9e6d-f4f01911781e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 84,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1500937956548,\r\n \"modificationTime\": 1500937956585,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "305" @@ -1210,16 +1231,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:43:57 GMT" + "Mon, 24 Jul 2017 23:12:36 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "d9d41571-e784-486c-807a-165663fd81a1" + "dff81457-6948-4d32-af51-6310d7336b84" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -1236,19 +1257,19 @@ ], "Names": { ".ctor": [ - "datalakerg13347", - "testdatalake19165", - "testadlfs12542" + "datalakerg1750", + "testdatalake16552", + "testadlfs1482" ], "CreateFile": [ - "SDKTestFolder01/SDKTestFile01.txt9567", - "SDKTestFolder01/SDKTestFile01.txt2924" + "SDKTestFolder01/SDKTestFile01.txt6720", + "SDKTestFolder01/SDKTestFile01.txt4502" ], "CreateFolder": [ - "SDKTestFolder018274" + "SDKTestFolder016979" ] }, "Variables": { - "SubscriptionId": "53d9063d-87ae-4ea8-be90-3686c3b8669f" + "SubscriptionId": "04319d6d-4a66-4701-bb2f-e7dbbd9ae4db" } } \ No newline at end of file diff --git a/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemNegativeConcurrentAppend.json b/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemNegativeConcurrentAppend.json index 49b94cb11457..40bb5e2e5dca 100644 --- a/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemNegativeConcurrentAppend.json +++ b/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemNegativeConcurrentAppend.json @@ -1,22 +1,23 @@ { "Entries": [ { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a35db849-bf03-4ef5-beb6-70d18c668794" + "d6d7cf8f-7c6b-41e0-b267-00d4e6ebae7b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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" @@ -28,7 +29,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:14:33 GMT" + "Mon, 24 Jul 2017 22:51:21 GMT" ], "Pragma": [ "no-cache" @@ -40,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1199" ], "x-ms-request-id": [ - "6c8e1c50-bf70-4cb1-b33e-fe386b35029a" + "34994681-9cf5-4c2b-b418-cc4a37fc55d7" ], "x-ms-correlation-request-id": [ - "6c8e1c50-bf70-4cb1-b33e-fe386b35029a" + "34994681-9cf5-4c2b-b418-cc4a37fc55d7" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181433Z:6c8e1c50-bf70-4cb1-b33e-fe386b35029a" + "WESTUS2:20170724T225121Z:34994681-9cf5-4c2b-b418-cc4a37fc55d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -58,22 +59,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b615b0fd-ce30-431d-ba23-0bee232d3776" + "5b83cdc4-735f-44e3-8d7f-c1856da5b5da" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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" @@ -85,7 +87,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:14:33 GMT" + "Mon, 24 Jul 2017 22:51:21 GMT" ], "Pragma": [ "no-cache" @@ -97,13 +99,13 @@ "14995" ], "x-ms-request-id": [ - "f9c3b714-d1a4-4131-9287-e0e8b9ce9631" + "f98f1000-874c-4f6a-a307-2a688f90759d" ], "x-ms-correlation-request-id": [ - "f9c3b714-d1a4-4131-9287-e0e8b9ce9631" + "f98f1000-874c-4f6a-a307-2a688f90759d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181433Z:f9c3b714-d1a4-4131-9287-e0e8b9ce9631" + "WESTUS2:20170724T225122Z:f98f1000-874c-4f6a-a307-2a688f90759d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -112,22 +114,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "414d98da-b4c6-4693-aeaf-f6ca5977f0eb" + "83b156a2-2ee9-4e7e-8307-c6d680ab6ad0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/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 \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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 \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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,7 +142,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:14:34 GMT" + "Mon, 24 Jul 2017 22:51:22 GMT" ], "Pragma": [ "no-cache" @@ -151,16 +154,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1198" ], "x-ms-request-id": [ - "609a42bb-f30d-426b-bc3c-6c696d265e24" + "2d52d1ca-d963-4a9e-b49d-2f51e1657382" ], "x-ms-correlation-request-id": [ - "609a42bb-f30d-426b-bc3c-6c696d265e24" + "2d52d1ca-d963-4a9e-b49d-2f51e1657382" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181434Z:609a42bb-f30d-426b-bc3c-6c696d265e24" + "WESTUS2:20170724T225123Z:2d52d1ca-d963-4a9e-b49d-2f51e1657382" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -169,22 +172,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5ce8bcde-5847-4c0d-abe9-2b8d597166a8" + "5da2ea19-7008-4f77-a9c9-edfda07fdb73" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/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 \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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 \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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" @@ -196,7 +200,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:14:34 GMT" + "Mon, 24 Jul 2017 22:51:22 GMT" ], "Pragma": [ "no-cache" @@ -208,13 +212,13 @@ "14994" ], "x-ms-request-id": [ - "e447539a-105b-4183-b26a-126b073c6eb1" + "e2e3b969-c2ba-48fc-87eb-e67aa8c5f6d6" ], "x-ms-correlation-request-id": [ - "e447539a-105b-4183-b26a-126b073c6eb1" + "e2e3b969-c2ba-48fc-87eb-e67aa8c5f6d6" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181434Z:e447539a-105b-4183-b26a-126b073c6eb1" + "WESTUS2:20170724T225123Z:e2e3b969-c2ba-48fc-87eb-e67aa8c5f6d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -223,22 +227,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11847?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTg0Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg17581?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzU4MT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c4efb741-8c48-4273-927d-651c0a9485a6" + "f930eed1-21a9-4e69-997e-e2cf246601ff" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg11847' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg17581' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -253,7 +258,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:14:34 GMT" + "Mon, 24 Jul 2017 22:51:22 GMT" ], "Pragma": [ "no-cache" @@ -265,13 +270,13 @@ "14993" ], "x-ms-request-id": [ - "fa279fe7-b275-464a-b67f-97a1a15c3812" + "b02dda18-da12-49c7-91d2-7d1d11e57473" ], "x-ms-correlation-request-id": [ - "fa279fe7-b275-464a-b67f-97a1a15c3812" + "b02dda18-da12-49c7-91d2-7d1d11e57473" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181434Z:fa279fe7-b275-464a-b67f-97a1a15c3812" + "WESTUS2:20170724T225123Z:b02dda18-da12-49c7-91d2-7d1d11e57473" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -280,22 +285,23 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11847?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTg0Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg17581?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzU4MT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b92d8a53-9b9f-49e3-9d21-c12aaff93063" + "ecdc6caf-7cc9-412e-8bfa-13c6bce4dc8f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg17581\",\r\n \"name\": \"datalakerg17581\",\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 +313,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:14:35 GMT" + "Mon, 24 Jul 2017 22:51:24 GMT" ], "Pragma": [ "no-cache" @@ -319,13 +325,13 @@ "14992" ], "x-ms-request-id": [ - "34d5cb65-3d31-4747-a538-70723e612ed7" + "2ab8a605-41db-4989-bb75-e9cb98db4f53" ], "x-ms-correlation-request-id": [ - "34d5cb65-3d31-4747-a538-70723e612ed7" + "2ab8a605-41db-4989-bb75-e9cb98db4f53" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181435Z:34d5cb65-3d31-4747-a538-70723e612ed7" + "WESTUS2:20170724T225124Z:2ab8a605-41db-4989-bb75-e9cb98db4f53" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +340,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11847?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTg0Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg17581?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzU4MT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,16 +352,17 @@ "31" ], "x-ms-client-request-id": [ - "eb77bdc6-9c77-4728-a7ed-a4fd6f925f72" + "c534f8e8-1014-42b0-9efa-da9b82bbadfa" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg17581\",\r\n \"name\": \"datalakerg17581\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -370,22 +377,22 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:14:35 GMT" + "Mon, 24 Jul 2017 22:51:24 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1197" ], "x-ms-request-id": [ - "bbd3bae3-113f-4abd-870c-e67a6d2fcc60" + "bd600228-6999-42bf-9c24-b5ece98f7d9e" ], "x-ms-correlation-request-id": [ - "bbd3bae3-113f-4abd-870c-e67a6d2fcc60" + "bd600228-6999-42bf-9c24-b5ece98f7d9e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181435Z:bbd3bae3-113f-4abd-870c-e67a6d2fcc60" + "WESTUS2:20170724T225124Z:bd600228-6999-42bf-9c24-b5ece98f7d9e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -394,22 +401,23 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11847/providers/Microsoft.DataLakeStore/accounts/testadlfs17884?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTg0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc4ODQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg17581/providers/Microsoft.DataLakeStore/accounts/testadlfs13027?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzU4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTMwMjc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3ced6b00-bcd5-47a3-8673-26235b30f598" + "311e5a80-e566-4f4f-90a8-4339b7592b6f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs13027' under resource group 'datalakerg17581' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "166" @@ -424,7 +432,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:14:35 GMT" + "Mon, 24 Jul 2017 22:51:25 GMT" ], "Pragma": [ "no-cache" @@ -433,13 +441,13 @@ "gateway" ], "x-ms-request-id": [ - "cc8d1436-93fe-4e80-937c-e0ed10e3539e" + "29926ec6-0f46-4794-b950-17ffca16d0dc" ], "x-ms-correlation-request-id": [ - "cc8d1436-93fe-4e80-937c-e0ed10e3539e" + "29926ec6-0f46-4794-b950-17ffca16d0dc" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181435Z:cc8d1436-93fe-4e80-937c-e0ed10e3539e" + "WESTUS2:20170724T225125Z:29926ec6-0f46-4794-b950-17ffca16d0dc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -448,16 +456,17 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11847/providers/Microsoft.DataLakeStore/accounts/testadlfs17884?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTg0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc4ODQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg17581/providers/Microsoft.DataLakeStore/accounts/testadlfs13027?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzU4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTMwMjc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"testadlfs13027.azuredatalakestore.net\",\r\n \"accountId\": \"f39d412f-a729-435f-9357-25db40f41816\",\r\n \"creationTime\": \"2017-07-24T22:51:28.6636989Z\",\r\n \"lastModifiedTime\": \"2017-07-24T22:51:28.6636989Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg17581/providers/Microsoft.DataLakeStore/accounts/testadlfs13027\",\r\n \"name\": \"testadlfs13027\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -472,7 +481,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:15:08 GMT" + "Mon, 24 Jul 2017 22:51:58 GMT" ], "Pragma": [ "no-cache" @@ -484,7 +493,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "09dddc95-1951-4c07-a169-d3f54a6da1bb" + "11c6f916-68a8-4436-864b-e11eb3f9ca4a" ], "X-Content-Type-Options": [ "nosniff" @@ -496,13 +505,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14982" ], "x-ms-correlation-request-id": [ - "d96de745-081a-43b5-ab2c-d295793731c5" + "214cf173-18ec-4bc8-b889-b4e9437362c8" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181509Z:d96de745-081a-43b5-ab2c-d295793731c5" + "WESTUS2:20170724T225158Z:214cf173-18ec-4bc8-b889-b4e9437362c8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -511,22 +520,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11847/providers/Microsoft.DataLakeStore/accounts/testadlfs17884?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTg0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc4ODQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg17581/providers/Microsoft.DataLakeStore/accounts/testadlfs13027?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzU4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTMwMjc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "96a698c4-3ff3-434d-981f-cf1881d384b4" + "fccaad4c-0c54-4c67-98ad-3bf4ceadcbb3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"testadlfs13027.azuredatalakestore.net\",\r\n \"accountId\": \"f39d412f-a729-435f-9357-25db40f41816\",\r\n \"creationTime\": \"2017-07-24T22:51:28.6636989Z\",\r\n \"lastModifiedTime\": \"2017-07-24T22:51:28.6636989Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg17581/providers/Microsoft.DataLakeStore/accounts/testadlfs13027\",\r\n \"name\": \"testadlfs13027\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -541,7 +551,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:15:09 GMT" + "Mon, 24 Jul 2017 22:51:59 GMT" ], "Pragma": [ "no-cache" @@ -553,7 +563,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "a737e5fb-c43a-47bc-8cd0-ce44d0944ea1" + "4619cb80-3675-4dc9-9c5e-81c3b7bf2b68" ], "X-Content-Type-Options": [ "nosniff" @@ -565,13 +575,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14990" ], "x-ms-correlation-request-id": [ - "d5512e8f-80da-4ade-a0cf-25d6f38dee3f" + "9fc70301-54f2-4f28-a5d9-7f0437330c7c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181509Z:d5512e8f-80da-4ade-a0cf-25d6f38dee3f" + "WESTUS2:20170724T225159Z:9fc70301-54f2-4f28-a5d9-7f0437330c7c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -580,8 +590,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11847/providers/Microsoft.DataLakeStore/accounts/testadlfs17884?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTg0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc4ODQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg17581/providers/Microsoft.DataLakeStore/accounts/testadlfs13027?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzU4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTMwMjc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -592,16 +602,17 @@ "31" ], "x-ms-client-request-id": [ - "0ba62dd4-f531-4e35-b858-354250dfc1b8" + "d03d9954-be25-4084-a192-9714745b34b4" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"f39d412f-a729-435f-9357-25db40f41816\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg17581/providers/Microsoft.DataLakeStore/accounts/testadlfs13027\",\r\n \"name\": \"testadlfs13027\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "420" @@ -619,13 +630,13 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:14:37 GMT" + "Mon, 24 Jul 2017 22:51:27 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11847/providers/Microsoft.DataLakeStore/accounts/testadlfs17884/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg17581/providers/Microsoft.DataLakeStore/accounts/testadlfs13027/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -634,10 +645,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "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" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/f39d412f-a729-435f-9357-25db40f418160?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "2b1c301d-7af6-450f-ad9f-92e652e8f20d" + "a4a10ee8-31cd-4f42-94aa-514ae9b27567" ], "X-Content-Type-Options": [ "nosniff" @@ -649,13 +660,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1198" ], "x-ms-correlation-request-id": [ - "ebf71bfd-b539-475a-8517-b54c523016d5" + "ad0d0d76-2db7-424a-85b2-c6f22d07e39b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181437Z:ebf71bfd-b539-475a-8517-b54c523016d5" + "WESTUS2:20170724T225127Z:ad0d0d76-2db7-424a-85b2-c6f22d07e39b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -664,13 +675,14 @@ "StatusCode": 201 }, { - "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", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/f39d412f-a729-435f-9357-25db40f418160?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2YzOWQ0MTJmLWE3MjktNDM1Zi05MzU3LTI1ZGI0MGY0MTgxNjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -688,7 +700,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:15:08 GMT" + "Mon, 24 Jul 2017 22:51:57 GMT" ], "Pragma": [ "no-cache" @@ -700,7 +712,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "f99dc898-c3dd-4d93-801a-ddc7cb018a14" + "410e834d-d35b-4c4f-a589-117e9df6669d" ], "X-Content-Type-Options": [ "nosniff" @@ -712,13 +724,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14978" ], "x-ms-correlation-request-id": [ - "2579aace-c6bb-40e0-b626-99ba89af662e" + "7b5780cd-4f11-47ea-bc42-ab0bf0af3991" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181508Z:2579aace-c6bb-40e0-b626-99ba89af662e" + "WESTUS2:20170724T225158Z:7b5780cd-4f11-47ea-bc42-ab0bf0af3991" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -727,8 +739,8 @@ "StatusCode": 200 }, { - "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt3301?appendMode=autocreate&op=CONCURRENTAPPEND&api-version=2016-11-01", - "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMzAxP2FwcGVuZE1vZGU9YXV0b2NyZWF0ZSZvcD1DT05DVVJSRU5UQVBQRU5EJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt130?appendMode=autocreate&op=CONCURRENTAPPEND&api-version=2016-11-01", + "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQxMzA/YXBwZW5kTW9kZT1hdXRvY3JlYXRlJm9wPUNPTkNVUlJFTlRBUFBFTkQmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "POST", "RequestBody": "More test contents, that were appended!", "RequestHeaders": { @@ -736,7 +748,7 @@ "application/octet-stream" ], "x-ms-client-request-id": [ - "932777d5-3c88-4e41-bbd8-a13a9b31890d" + "4f7d07c2-1e8e-463e-98d4-e7c61b25288f" ], "Transfer-Encoding": [ "chunked" @@ -745,7 +757,8 @@ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "\"Operation succeeded.\"", @@ -763,13 +776,13 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:15:10 GMT" + "Mon, 24 Jul 2017 22:52:01 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "4f4b60e9-8995-4d1c-86df-c06a354958ef" + "fde75701-f94b-4cde-9f46-8a50aee81a89" ], "X-Content-Type-Options": [ "nosniff" @@ -781,19 +794,20 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3301?op=OPEN&read=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMzAxP29wPU9QRU4mcmVhZD10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt130?read=true&op=OPEN&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQxMzA/cmVhZD10cnVlJm9wPU9QRU4mYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e5bb326c-584e-43d1-869a-5f130a23b426" + "2cfd7115-6009-4f2e-955b-20aab7cfbda4" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "More test contents, that were appended!", @@ -808,7 +822,7 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:15:11 GMT" + "Mon, 24 Jul 2017 22:52:01 GMT" ], "Pragma": [ "no-cache" @@ -817,10 +831,10 @@ "chunked" ], "x-ms-request-id": [ - "0ca08f95-ea5f-4b5d-b0f0-d6273d7aae5a" + "1ffc1983-5623-4d44-9386-a9803605d195" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -835,8 +849,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3301?op=APPEND&append=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMzAxP29wPUFQUEVORCZhcHBlbmQ9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt130?append=true&op=APPEND&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQxMzA/YXBwZW5kPXRydWUmb3A9QVBQRU5EJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -847,19 +861,20 @@ "0" ], "x-ms-client-request-id": [ - "896d4229-2023-4533-95e8-b13b2d425d46" + "cd166f84-dd9c-4d8b-8142-b85d0df39011" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"IllegalArgumentException\",\r\n \"message\": \"APPEND failed with error 0x83090a6f (Bad request. The target file does not support this particular type of append operation. If the concurrent append operation has been used with this file in the past, you need to append to this file using the concurrent append operation. If the append operation with offset has been used in the past, you need to append to this file using the append operation with offset. On the same file, it is not possible to use both of these operations.). [512c01d7-6ab4-45d3-bf0d-c102f902ace0][2017-07-24T15:52:02.6001800-07:00]\",\r\n \"javaClassName\": \"java.lang.IllegalArgumentException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "245" + "679" ], "Content-Type": [ "application/json; charset=utf-8" @@ -871,19 +886,19 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:15:31 GMT" + "Mon, 24 Jul 2017 22:52:01 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "6aed0b97-5240-4da5-8918-3081b160e17d" + "512c01d7-6ab4-45d3-bf0d-c102f902ace0" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ - "0x83090053" + "0x83090A6F" ], "X-Content-Type-Options": [ "nosniff" @@ -892,11 +907,11 @@ "max-age=15724800; includeSubDomains" ] }, - "StatusCode": 500 + "StatusCode": 400 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7517?op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3NTE3P29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3454?write=true&op=CREATE&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzNDU0P3dyaXRlPXRydWUmb3A9Q1JFQVRFJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -907,13 +922,14 @@ "42" ], "x-ms-client-request-id": [ - "fd497abc-79bf-4545-ad12-f9c7ac8b354e" + "dfd7b2d1-4f1c-4814-8e6f-7d8fd38f8819" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "", @@ -928,22 +944,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:15:31 GMT" + "Mon, 24 Jul 2017 22:52:02 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs17884.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt7517?op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs13027.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt3454?write=true&op=CREATE&api-version=2016-11-01" ], "x-ms-request-id": [ - "3c4372bd-b415-468b-a771-a4b2d8ce2d81" + "0f1cbe9b-bd44-4d52-b6c5-0605b13173f6" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -958,8 +974,8 @@ "StatusCode": 201 }, { - "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt7517?op=CONCURRENTAPPEND&api-version=2016-11-01", - "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3NTE3P29wPUNPTkNVUlJFTlRBUFBFTkQmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt3454?op=CONCURRENTAPPEND&api-version=2016-11-01", + "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzNDU0P29wPUNPTkNVUlJFTlRBUFBFTkQmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "POST", "RequestBody": "More test contents, that were appended!", "RequestHeaders": { @@ -967,7 +983,7 @@ "application/octet-stream" ], "x-ms-client-request-id": [ - "5b813c88-c31b-46a0-8996-5b0eb11b4db0" + "3d50ce0e-b126-4681-a94d-49a528aafa25" ], "Transfer-Encoding": [ "chunked" @@ -976,10 +992,11 @@ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"RuntimeException\",\r\n \"message\": \"The exception is unexpected. [0x83090A6F] [][2017-07-24T15:52:24.0635506-07:00]\",\r\n \"javaClassName\": \"java.lang.RuntimeException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "189" @@ -994,13 +1011,13 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:15:52 GMT" + "Mon, 24 Jul 2017 22:52:23 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "8b41c71d-1465-499c-87f7-7357495b11a7" + "c2e07041-3b4e-4458-be90-4fb2cdf584f7" ], "X-Content-Type-Options": [ "nosniff" @@ -1014,18 +1031,18 @@ ], "Names": { ".ctor": [ - "datalakerg11847", - "testdatalake12475", - "testadlfs17884" + "datalakerg17581", + "testdatalake1257", + "testadlfs13027" ], "DataLakeStoreFileSystemNegativeConcurrentAppend": [ - "SDKTestFolder01/SDKTestFile01.txt3301" + "SDKTestFolder01/SDKTestFile01.txt130" ], "CreateFile": [ - "SDKTestFolder01/SDKTestFile01.txt7517" + "SDKTestFolder01/SDKTestFile01.txt3454" ] }, "Variables": { - "SubscriptionId": "53d9063d-87ae-4ea8-be90-3686c3b8669f" + "SubscriptionId": "04319d6d-4a66-4701-bb2f-e7dbbd9ae4db" } } \ No newline at end of file diff --git a/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemNegativeExpiry.json b/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemNegativeExpiry.json index 0a3f23a44551..12c0d19ee319 100644 --- a/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemNegativeExpiry.json +++ b/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemNegativeExpiry.json @@ -1,22 +1,23 @@ { "Entries": [ { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "74a978cc-f87b-42ff-a476-090b663247d3" + "d378c465-0e67-455e-8bb6-f93a20f7b4a2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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" @@ -28,7 +29,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:17:21 GMT" + "Mon, 24 Jul 2017 23:10:21 GMT" ], "Pragma": [ "no-cache" @@ -40,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1193" ], "x-ms-request-id": [ - "75b7691a-bf18-4c3e-a4fe-e83df5f2f854" + "ac856aa7-2fb3-4c2d-b424-062556e17fba" ], "x-ms-correlation-request-id": [ - "75b7691a-bf18-4c3e-a4fe-e83df5f2f854" + "ac856aa7-2fb3-4c2d-b424-062556e17fba" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T181722Z:75b7691a-bf18-4c3e-a4fe-e83df5f2f854" + "WESTUS2:20170724T231022Z:ac856aa7-2fb3-4c2d-b424-062556e17fba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -58,22 +59,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "19ffee86-85ac-4362-a609-eed164c1b7cc" + "4b3fda46-596c-4326-9350-07c28051c267" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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" @@ -85,7 +87,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:17:21 GMT" + "Mon, 24 Jul 2017 23:10:21 GMT" ], "Pragma": [ "no-cache" @@ -94,16 +96,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14979" ], "x-ms-request-id": [ - "3cd61379-64d1-40d9-8bd2-480d0474b635" + "c5082b7e-ac87-41a2-8f04-d65a33952805" ], "x-ms-correlation-request-id": [ - "3cd61379-64d1-40d9-8bd2-480d0474b635" + "c5082b7e-ac87-41a2-8f04-d65a33952805" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T181722Z:3cd61379-64d1-40d9-8bd2-480d0474b635" + "WESTUS2:20170724T231022Z:c5082b7e-ac87-41a2-8f04-d65a33952805" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -112,22 +114,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f4b04657-928f-4939-83f2-ebff06f7d496" + "418a4896-22e3-43e9-8da2-8a4773272c09" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/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 \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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 \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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,7 +142,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:17:22 GMT" + "Mon, 24 Jul 2017 23:10:22 GMT" ], "Pragma": [ "no-cache" @@ -151,16 +154,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1192" ], "x-ms-request-id": [ - "0d221c30-66cb-4117-9ed9-146754ea73d4" + "91111656-bbc6-48c2-bb05-e4a98ec37cc1" ], "x-ms-correlation-request-id": [ - "0d221c30-66cb-4117-9ed9-146754ea73d4" + "91111656-bbc6-48c2-bb05-e4a98ec37cc1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T181723Z:0d221c30-66cb-4117-9ed9-146754ea73d4" + "WESTUS2:20170724T231023Z:91111656-bbc6-48c2-bb05-e4a98ec37cc1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -169,22 +172,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4d16eba6-20a5-4855-91e1-b74d9ef37254" + "d006fbaf-aa3e-4f3a-96be-615c9446c3c2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/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 \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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 \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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" @@ -196,7 +200,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:17:22 GMT" + "Mon, 24 Jul 2017 23:10:22 GMT" ], "Pragma": [ "no-cache" @@ -205,16 +209,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14978" ], "x-ms-request-id": [ - "f5e4ab3b-b2c9-49c4-920c-d009603dd3ec" + "81a227d8-a821-4fdf-8657-f8b7aa8fd56c" ], "x-ms-correlation-request-id": [ - "f5e4ab3b-b2c9-49c4-920c-d009603dd3ec" + "81a227d8-a821-4fdf-8657-f8b7aa8fd56c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T181723Z:f5e4ab3b-b2c9-49c4-920c-d009603dd3ec" + "WESTUS2:20170724T231023Z:81a227d8-a821-4fdf-8657-f8b7aa8fd56c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -223,22 +227,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11397?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTM5Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg15444?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNTQ0ND9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c7c4d3a1-c0d8-464d-a14b-982a93d68d6e" + "69284feb-7d54-4186-a3da-24d5fb25dc36" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg11397' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg15444' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -253,7 +258,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:17:22 GMT" + "Mon, 24 Jul 2017 23:10:22 GMT" ], "Pragma": [ "no-cache" @@ -262,16 +267,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14977" ], "x-ms-request-id": [ - "64f6e1a8-c722-4c99-b1d3-b325b565ab9f" + "040f39e3-f117-4c1b-b14c-e766f315456c" ], "x-ms-correlation-request-id": [ - "64f6e1a8-c722-4c99-b1d3-b325b565ab9f" + "040f39e3-f117-4c1b-b14c-e766f315456c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T181723Z:64f6e1a8-c722-4c99-b1d3-b325b565ab9f" + "WESTUS2:20170724T231023Z:040f39e3-f117-4c1b-b14c-e766f315456c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -280,22 +285,23 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11397?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTM5Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg15444?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNTQ0ND9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7e8f41fd-aa46-470a-a952-0511caff255f" + "5bd4e986-1830-4578-a07b-3881f5561fe2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg15444\",\r\n \"name\": \"datalakerg15444\",\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 +313,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:17:23 GMT" + "Mon, 24 Jul 2017 23:10:24 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +322,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14976" ], "x-ms-request-id": [ - "5d4263e7-5368-4fbc-954d-ae03f0ff9e13" + "dffcb5ad-5728-4b42-bcd1-6fb6850b4b16" ], "x-ms-correlation-request-id": [ - "5d4263e7-5368-4fbc-954d-ae03f0ff9e13" + "dffcb5ad-5728-4b42-bcd1-6fb6850b4b16" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T181724Z:5d4263e7-5368-4fbc-954d-ae03f0ff9e13" + "WESTUS2:20170724T231025Z:dffcb5ad-5728-4b42-bcd1-6fb6850b4b16" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +340,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11397?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTM5Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg15444?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNTQ0ND9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,16 +352,17 @@ "31" ], "x-ms-client-request-id": [ - "3b1187b6-b913-4371-8166-a321fa795161" + "9c0e45e7-5f6e-4e2e-8c83-18e34575ed30" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg15444\",\r\n \"name\": \"datalakerg15444\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -370,22 +377,22 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:17:23 GMT" + "Mon, 24 Jul 2017 23:10:24 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1191" ], "x-ms-request-id": [ - "922829cd-f611-4a25-a7ef-ffcea16a0285" + "bd696e71-1efa-4190-b064-dec3c4857ce1" ], "x-ms-correlation-request-id": [ - "922829cd-f611-4a25-a7ef-ffcea16a0285" + "bd696e71-1efa-4190-b064-dec3c4857ce1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T181724Z:922829cd-f611-4a25-a7ef-ffcea16a0285" + "WESTUS2:20170724T231025Z:bd696e71-1efa-4190-b064-dec3c4857ce1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -394,25 +401,26 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11397/providers/Microsoft.DataLakeStore/accounts/testadlfs1602?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTM5Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTYwMj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg15444/providers/Microsoft.DataLakeStore/accounts/testadlfs17779?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNTQ0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc3Nzk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "34b8ce06-381c-4c54-82af-261b5c1dda0d" + "36e78ab7-5969-4644-a6bc-f92c3174cdb6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs17779' under resource group 'datalakerg15444' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "165" + "166" ], "Content-Type": [ "application/json; charset=utf-8" @@ -424,7 +432,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:17:24 GMT" + "Mon, 24 Jul 2017 23:10:25 GMT" ], "Pragma": [ "no-cache" @@ -433,13 +441,13 @@ "gateway" ], "x-ms-request-id": [ - "a8203f37-66b9-4bf4-9eb8-90878a4d3ccd" + "237e99e7-cf09-4c45-a810-65d298ed21d0" ], "x-ms-correlation-request-id": [ - "a8203f37-66b9-4bf4-9eb8-90878a4d3ccd" + "237e99e7-cf09-4c45-a810-65d298ed21d0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T181724Z:a8203f37-66b9-4bf4-9eb8-90878a4d3ccd" + "WESTUS2:20170724T231026Z:237e99e7-cf09-4c45-a810-65d298ed21d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -448,16 +456,17 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11397/providers/Microsoft.DataLakeStore/accounts/testadlfs1602?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTM5Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTYwMj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg15444/providers/Microsoft.DataLakeStore/accounts/testadlfs17779?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNTQ0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc3Nzk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"testadlfs17779.azuredatalakestore.net\",\r\n \"accountId\": \"5c243154-d0be-4ed1-86e1-50becfb027b1\",\r\n \"creationTime\": \"2017-07-24T23:10:28.6653936Z\",\r\n \"lastModifiedTime\": \"2017-07-24T23:10:28.6653936Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg15444/providers/Microsoft.DataLakeStore/accounts/testadlfs17779\",\r\n \"name\": \"testadlfs17779\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -472,7 +481,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:17:56 GMT" + "Mon, 24 Jul 2017 23:10:59 GMT" ], "Pragma": [ "no-cache" @@ -484,7 +493,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "7621b6a9-7be8-4dd2-a5c4-51439341c6b2" + "ea375f37-f61c-470f-811a-5a999e7fb774" ], "X-Content-Type-Options": [ "nosniff" @@ -496,13 +505,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14976" ], "x-ms-correlation-request-id": [ - "ac66359e-2db5-43a5-8a24-5ee1afc7d53c" + "1254572e-4a8b-497f-9491-6955bc4f3a21" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T181756Z:ac66359e-2db5-43a5-8a24-5ee1afc7d53c" + "WESTUS2:20170724T231059Z:1254572e-4a8b-497f-9491-6955bc4f3a21" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -511,22 +520,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11397/providers/Microsoft.DataLakeStore/accounts/testadlfs1602?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTM5Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTYwMj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg15444/providers/Microsoft.DataLakeStore/accounts/testadlfs17779?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNTQ0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc3Nzk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3230aa77-7056-4104-a454-55e343585f94" + "ffb1132d-82b7-48e5-a94f-314a21464ab3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"testadlfs17779.azuredatalakestore.net\",\r\n \"accountId\": \"5c243154-d0be-4ed1-86e1-50becfb027b1\",\r\n \"creationTime\": \"2017-07-24T23:10:28.6653936Z\",\r\n \"lastModifiedTime\": \"2017-07-24T23:10:28.6653936Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg15444/providers/Microsoft.DataLakeStore/accounts/testadlfs17779\",\r\n \"name\": \"testadlfs17779\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -541,7 +551,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:17:57 GMT" + "Mon, 24 Jul 2017 23:11:00 GMT" ], "Pragma": [ "no-cache" @@ -553,7 +563,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "bc66e847-8cc9-48f4-8a30-6733f991d076" + "ac80d6e2-e1f7-415a-9336-777f5e42e86a" ], "X-Content-Type-Options": [ "nosniff" @@ -565,13 +575,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14974" ], "x-ms-correlation-request-id": [ - "e78fe726-e626-41a4-95d9-32af8a455fd0" + "14b16570-77d6-492e-929c-86b403f68279" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T181757Z:e78fe726-e626-41a4-95d9-32af8a455fd0" + "WESTUS2:20170724T231100Z:14b16570-77d6-492e-929c-86b403f68279" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -580,8 +590,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11397/providers/Microsoft.DataLakeStore/accounts/testadlfs1602?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTM5Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTYwMj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg15444/providers/Microsoft.DataLakeStore/accounts/testadlfs17779?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNTQ0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc3Nzk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -592,19 +602,20 @@ "31" ], "x-ms-client-request-id": [ - "b5523999-2af4-4769-9253-bd00ab5a5ad8" + "2d727be3-edf2-4a16-b73e-967af0ec269e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"5c243154-d0be-4ed1-86e1-50becfb027b1\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg15444/providers/Microsoft.DataLakeStore/accounts/testadlfs17779\",\r\n \"name\": \"testadlfs17779\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "418" + "420" ], "Content-Type": [ "application/json" @@ -619,13 +630,13 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:17:25 GMT" + "Mon, 24 Jul 2017 23:10:27 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11397/providers/Microsoft.DataLakeStore/accounts/testadlfs1602/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg15444/providers/Microsoft.DataLakeStore/accounts/testadlfs17779/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -634,10 +645,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "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" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/5c243154-d0be-4ed1-86e1-50becfb027b10?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "8683e161-bf31-490d-9fe8-5091260599d7" + "f77a55e1-9c21-422d-bdf6-eab913adfd14" ], "X-Content-Type-Options": [ "nosniff" @@ -649,13 +660,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1188" ], "x-ms-correlation-request-id": [ - "a64a12bb-f013-4e0d-bed5-00f2e7a7b104" + "eb83a77e-7b71-46da-a0ab-64159d477ba4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T181725Z:a64a12bb-f013-4e0d-bed5-00f2e7a7b104" + "WESTUS2:20170724T231028Z:eb83a77e-7b71-46da-a0ab-64159d477ba4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -664,13 +675,14 @@ "StatusCode": 201 }, { - "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", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/5c243154-d0be-4ed1-86e1-50becfb027b10?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzVjMjQzMTU0LWQwYmUtNGVkMS04NmUxLTUwYmVjZmIwMjdiMTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -688,7 +700,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:17:56 GMT" + "Mon, 24 Jul 2017 23:10:57 GMT" ], "Pragma": [ "no-cache" @@ -700,7 +712,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "b2cf4b67-cc53-41ef-b269-c07cbc9a6764" + "36d6e522-9408-4168-b8bd-9ad496534e5b" ], "X-Content-Type-Options": [ "nosniff" @@ -712,13 +724,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14974" ], "x-ms-correlation-request-id": [ - "969cf41b-fdd0-4aa9-bc3f-8d62e5ec0080" + "cecc89a2-b353-4c88-a1ba-6b3ac96ca9c5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T181756Z:969cf41b-fdd0-4aa9-bc3f-8d62e5ec0080" + "WESTUS2:20170724T231058Z:cecc89a2-b353-4c88-a1ba-6b3ac96ca9c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -727,8 +739,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt527?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ1Mjc/c3luY0ZsYWc9REFUQSZvcD1DUkVBVEUmd3JpdGU9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt1826?syncFlag=DATA&write=true&op=CREATE&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQxODI2P3N5bmNGbGFnPURBVEEmd3JpdGU9dHJ1ZSZvcD1DUkVBVEUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { @@ -739,13 +751,14 @@ "0" ], "x-ms-client-request-id": [ - "1bc7cb37-4763-44ef-a1c9-e35a68114683" + "dacbb09f-1d71-40ea-bba7-f17d35f4e8aa" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "", @@ -760,22 +773,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:18:06 GMT" + "Mon, 24 Jul 2017 23:11:04 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs1602.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt527?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs17779.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt1826?syncFlag=DATA&write=true&op=CREATE&api-version=2016-11-01" ], "x-ms-request-id": [ - "75d39d02-197e-4eb1-a92e-d69be5c0fca2" + "c3720e60-e358-400b-ae63-fc1a68001b19" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -790,22 +803,23 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt527?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ1Mjc/b3A9R0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt1826?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQxODI2P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d4bf4c35-4786-4f8e-9ad8-788d714b489e" + "07b5c367-2e4d-44fc-bbc6-c4f0f8a9c741" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1500937865193,\r\n \"modificationTime\": 1500937865193,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "304" @@ -820,16 +834,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:18:06 GMT" + "Mon, 24 Jul 2017 23:11:04 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "6541275f-919e-44d7-9405-ecd9885ff426" + "4ccb7c5a-88e2-4e77-ba70-c64a5fdc19a2" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -844,22 +858,23 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt527?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ1Mjc/b3A9R0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt1826?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQxODI2P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "40eae469-426b-4566-a48f-ee201dd424aa" + "1bc9f114-b870-48db-8d56-8844e0e6dff2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1500937865193,\r\n \"modificationTime\": 1500937865193,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "304" @@ -874,16 +889,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:18:06 GMT" + "Mon, 24 Jul 2017 23:11:04 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "d3c736d3-875d-4feb-a7cd-46211acbc3fe" + "7bc566c0-159a-4e68-9926-79c4076c1150" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -898,22 +913,23 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt527?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ1Mjc/b3A9R0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt1826?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQxODI2P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dacf420e-4d95-4672-adce-7b92a2f881dd" + "2eb63ee3-911a-4a8a-9ba1-aaa7b8b0d156" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1500937865193,\r\n \"modificationTime\": 1500937865193,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "304" @@ -928,16 +944,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:18:27 GMT" + "Mon, 24 Jul 2017 23:11:26 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "60c612f1-df1b-490b-9197-76e465d98954" + "ceb24761-07f7-452b-842e-d81992ee6334" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -952,25 +968,26 @@ "StatusCode": 200 }, { - "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt527?expiryOption=Absolute&expireTime=1490638567000&op=SETEXPIRY&api-version=2016-11-01", - "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ1Mjc/ZXhwaXJ5T3B0aW9uPUFic29sdXRlJmV4cGlyZVRpbWU9MTQ5MDYzODU2NzAwMCZvcD1TRVRFWFBJUlkmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt1826?expiryOption=Absolute&expireTime=1500937745000&op=SETEXPIRY&api-version=2016-11-01", + "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQxODI2P2V4cGlyeU9wdGlvbj1BYnNvbHV0ZSZleHBpcmVUaW1lPTE1MDA5Mzc3NDUwMDAmb3A9U0VURVhQSVJZJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "09956673-f4d1-463c-8dd2-091341fcf26f" + "3842358f-eb58-4984-b69d-36c57bf3fe58" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"IllegalArgumentException\",\r\n \"message\": \"Parameter expireTime is Invaild, Reason Invalid expireTime, PathAndQuery /WebHdfsExt/SDKTestFolder01/SDKTestFile01.txt1826?expiryOption=Absolute&expireTime=1500937745000&op=SETEXPIRY&api-version=2016-11-01, Method PUT [][2017-07-24T16:11:05.6051475-07:00]\",\r\n \"javaClassName\": \"java.lang.IllegalArgumentException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "380" + "381" ], "Content-Type": [ "application/json; charset=utf-8" @@ -982,13 +999,13 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:18:06 GMT" + "Mon, 24 Jul 2017 23:11:05 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "218f6c49-9fc4-4b60-abc2-e4ba68d79c56" + "7507fab2-d763-4c07-bc22-be860f898cb2" ], "X-Content-Type-Options": [ "nosniff" @@ -1000,22 +1017,23 @@ "StatusCode": 400 }, { - "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt527?expiryOption=Absolute&expireTime=253402300800000&op=SETEXPIRY&api-version=2016-11-01", - "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ1Mjc/ZXhwaXJ5T3B0aW9uPUFic29sdXRlJmV4cGlyZVRpbWU9MjUzNDAyMzAwODAwMDAwJm9wPVNFVEVYUElSWSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt1826?expiryOption=Absolute&expireTime=253402300800000&op=SETEXPIRY&api-version=2016-11-01", + "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQxODI2P2V4cGlyeU9wdGlvbj1BYnNvbHV0ZSZleHBpcmVUaW1lPTI1MzQwMjMwMDgwMDAwMCZvcD1TRVRFWFBJUlkmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7eb25ba6-ea8e-4edb-a9c1-a80218f9159f" + "e2b4c536-b9c2-4841-b751-8e10fd633cfa" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "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-07-24T16:11:26.1208981-07:00]\",\r\n \"javaClassName\": \"java.lang.RuntimeException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "243" @@ -1030,13 +1048,13 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:18:27 GMT" + "Mon, 24 Jul 2017 23:11:25 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "c480b8f2-46e3-41d6-b176-76c918a1f2d4" + "72dac6ca-70b1-4924-857c-a4fcbf9145e9" ], "X-Content-Type-Options": [ "nosniff" @@ -1048,19 +1066,20 @@ "StatusCode": 500 }, { - "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt527?expiryOption=NeverExpire&expireTime=400&op=SETEXPIRY&api-version=2016-11-01", - "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ1Mjc/ZXhwaXJ5T3B0aW9uPU5ldmVyRXhwaXJlJmV4cGlyZVRpbWU9NDAwJm9wPVNFVEVYUElSWSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt1826?expiryOption=NeverExpire&expireTime=400&op=SETEXPIRY&api-version=2016-11-01", + "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQxODI2P2V4cGlyeU9wdGlvbj1OZXZlckV4cGlyZSZleHBpcmVUaW1lPTQwMCZvcD1TRVRFWFBJUlkmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2b091773-4d5c-49d5-ac17-4bf2e7358bfd" + "8f339f65-4f1b-4d9e-acdd-239427ee260f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "", @@ -1075,13 +1094,13 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:18:27 GMT" + "Mon, 24 Jul 2017 23:11:26 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "a434bc38-72e9-4dc6-a0fc-32a2f0a3a4e3" + "44fe4230-820b-4f96-a581-d2bf5be86228" ], "X-Content-Type-Options": [ "nosniff" @@ -1095,16 +1114,16 @@ ], "Names": { ".ctor": [ - "datalakerg11397", - "testdatalake12837", - "testadlfs1602" + "datalakerg15444", + "testdatalake15184", + "testadlfs17779" ], "CreateFile": [ - "SDKTestFolder01/SDKTestFile01.txt527" + "SDKTestFolder01/SDKTestFile01.txt1826" ] }, "Variables": { - "SubscriptionId": "53d9063d-87ae-4ea8-be90-3686c3b8669f", - "absoluteNegativeTime": "3/27/2017 6:16:07 PM" + "SubscriptionId": "04319d6d-4a66-4701-bb2f-e7dbbd9ae4db", + "absoluteNegativeTime": "7/24/2017 11:09:05 PM" } } \ No newline at end of file diff --git a/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemSetAcl.json b/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemSetAcl.json index b2bd2941d124..8c2bc6b39c41 100644 --- a/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemSetAcl.json +++ b/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemSetAcl.json @@ -1,22 +1,23 @@ { "Entries": [ { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5f74b271-2946-4e69-9f81-428489a5a718" + "3208df0e-5220-4c5a-b25c-1b4e5678eee4" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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" @@ -28,7 +29,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 19:13:24 GMT" + "Mon, 24 Jul 2017 22:56:04 GMT" ], "Pragma": [ "no-cache" @@ -40,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1197" ], "x-ms-request-id": [ - "0d07a4cb-5330-4edf-a50b-2b47d0e1edeb" + "107897c2-f4f8-4ce7-894c-0ba4ef1ba512" ], "x-ms-correlation-request-id": [ - "0d07a4cb-5330-4edf-a50b-2b47d0e1edeb" + "107897c2-f4f8-4ce7-894c-0ba4ef1ba512" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T191325Z:0d07a4cb-5330-4edf-a50b-2b47d0e1edeb" + "WESTUS2:20170724T225605Z:107897c2-f4f8-4ce7-894c-0ba4ef1ba512" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -58,22 +59,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "23ffb6ae-f2d9-4f6b-b29c-a174170fb04e" + "b34b1ef5-5384-4184-b46f-ae96e8de664e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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" @@ -85,7 +87,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 19:13:24 GMT" + "Mon, 24 Jul 2017 22:56:04 GMT" ], "Pragma": [ "no-cache" @@ -94,16 +96,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14985" ], "x-ms-request-id": [ - "e7a71471-4481-46ca-b351-c898fadebc32" + "8ad5898e-89d4-47e3-8b09-ea3075a41dd3" ], "x-ms-correlation-request-id": [ - "e7a71471-4481-46ca-b351-c898fadebc32" + "8ad5898e-89d4-47e3-8b09-ea3075a41dd3" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T191325Z:e7a71471-4481-46ca-b351-c898fadebc32" + "WESTUS2:20170724T225605Z:8ad5898e-89d4-47e3-8b09-ea3075a41dd3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -112,22 +114,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fe818cbc-aa52-40ac-9637-b0f3221e05fb" + "5933b15f-1120-4411-918e-ec346c760805" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/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 \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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 \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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,7 +142,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 19:13:25 GMT" + "Mon, 24 Jul 2017 22:56:08 GMT" ], "Pragma": [ "no-cache" @@ -151,16 +154,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1196" ], "x-ms-request-id": [ - "495c6627-786a-4413-9260-8f501ac2ad0b" + "3627cecc-edd7-4678-ba73-8687df8323c5" ], "x-ms-correlation-request-id": [ - "495c6627-786a-4413-9260-8f501ac2ad0b" + "3627cecc-edd7-4678-ba73-8687df8323c5" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T191326Z:495c6627-786a-4413-9260-8f501ac2ad0b" + "WESTUS2:20170724T225609Z:3627cecc-edd7-4678-ba73-8687df8323c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -169,22 +172,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "de13bb86-fba0-40c6-acbe-72e59e83393f" + "225e918d-d23a-494c-a6e2-82713b3276c2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/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 \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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 \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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" @@ -196,7 +200,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 19:13:25 GMT" + "Mon, 24 Jul 2017 22:56:08 GMT" ], "Pragma": [ "no-cache" @@ -205,16 +209,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14984" ], "x-ms-request-id": [ - "2074d591-f952-4183-a10a-4d546d069d0e" + "0f4a4ee7-38c3-4ba2-9704-a79a14396b84" ], "x-ms-correlation-request-id": [ - "2074d591-f952-4183-a10a-4d546d069d0e" + "0f4a4ee7-38c3-4ba2-9704-a79a14396b84" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T191326Z:2074d591-f952-4183-a10a-4d546d069d0e" + "WESTUS2:20170724T225609Z:0f4a4ee7-38c3-4ba2-9704-a79a14396b84" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -223,25 +227,26 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1488?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNDg4P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg16083?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNjA4Mz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c156f5c5-f301-4350-8725-07da0715dfca" + "6e894129-c088-4fc4-a854-97a664645604" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg1488' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg16083' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "106" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -253,7 +258,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 19:13:25 GMT" + "Mon, 24 Jul 2017 22:56:08 GMT" ], "Pragma": [ "no-cache" @@ -262,16 +267,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14983" ], "x-ms-request-id": [ - "ffd9a375-dd17-4414-aced-917f98c91a3e" + "157493c8-2c7c-4a77-a925-e6e79c453e1f" ], "x-ms-correlation-request-id": [ - "ffd9a375-dd17-4414-aced-917f98c91a3e" + "157493c8-2c7c-4a77-a925-e6e79c453e1f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T191326Z:ffd9a375-dd17-4414-aced-917f98c91a3e" + "WESTUS2:20170724T225609Z:157493c8-2c7c-4a77-a925-e6e79c453e1f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -280,22 +285,23 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1488?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNDg4P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg16083?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNjA4Mz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e0876702-ac06-450c-91a6-7b2656e6eb0a" + "a7b4a840-9275-4aaa-a543-846b1f66e887" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg16083\",\r\n \"name\": \"datalakerg16083\",\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 +313,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 19:13:26 GMT" + "Mon, 24 Jul 2017 22:56:09 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +322,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14982" ], "x-ms-request-id": [ - "a170dc1d-a1a9-43a1-8bd5-f01d9dd6a0fe" + "1a91a34c-d4bc-4931-a149-3c0019ea5c10" ], "x-ms-correlation-request-id": [ - "a170dc1d-a1a9-43a1-8bd5-f01d9dd6a0fe" + "1a91a34c-d4bc-4931-a149-3c0019ea5c10" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T191326Z:a170dc1d-a1a9-43a1-8bd5-f01d9dd6a0fe" + "WESTUS2:20170724T225610Z:1a91a34c-d4bc-4931-a149-3c0019ea5c10" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +340,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1488?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNDg4P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg16083?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNjA4Mz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,19 +352,20 @@ "31" ], "x-ms-client-request-id": [ - "f1103051-7f11-42ed-af7b-f33444ec8d72" + "154f0ad7-2a25-4c7c-8b30-c6ad8940d6f9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg16083\",\r\n \"name\": \"datalakerg16083\",\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" @@ -370,22 +377,22 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 19:13:26 GMT" + "Mon, 24 Jul 2017 22:56:09 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1195" ], "x-ms-request-id": [ - "6249d3b4-51d8-4f0a-9d42-29ca5e610f99" + "067cbbab-2636-4ca7-900d-7b62e8d067e1" ], "x-ms-correlation-request-id": [ - "6249d3b4-51d8-4f0a-9d42-29ca5e610f99" + "067cbbab-2636-4ca7-900d-7b62e8d067e1" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T191326Z:6249d3b4-51d8-4f0a-9d42-29ca5e610f99" + "WESTUS2:20170724T225610Z:067cbbab-2636-4ca7-900d-7b62e8d067e1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -394,25 +401,26 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1488/providers/Microsoft.DataLakeStore/accounts/testadlfs15112?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxNTExMj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg16083/providers/Microsoft.DataLakeStore/accounts/testadlfs11101?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjA4My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTExMDE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e3a8e50c-c3f5-44f8-ae34-827b90e2b28f" + "902b9dc8-ea98-4080-a203-d458729ab1cf" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs11101' under resource group 'datalakerg16083' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "165" + "166" ], "Content-Type": [ "application/json; charset=utf-8" @@ -424,7 +432,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 19:13:26 GMT" + "Mon, 24 Jul 2017 22:56:11 GMT" ], "Pragma": [ "no-cache" @@ -433,13 +441,13 @@ "gateway" ], "x-ms-request-id": [ - "a323bfd8-3635-41c8-8a5c-9a64e53c8359" + "7ff90cd8-2e2c-452e-a398-19de701a1940" ], "x-ms-correlation-request-id": [ - "a323bfd8-3635-41c8-8a5c-9a64e53c8359" + "7ff90cd8-2e2c-452e-a398-19de701a1940" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T191327Z:a323bfd8-3635-41c8-8a5c-9a64e53c8359" + "WESTUS2:20170724T225611Z:7ff90cd8-2e2c-452e-a398-19de701a1940" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -448,16 +456,17 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1488/providers/Microsoft.DataLakeStore/accounts/testadlfs15112?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxNTExMj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg16083/providers/Microsoft.DataLakeStore/accounts/testadlfs11101?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjA4My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTExMDE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"testadlfs11101.azuredatalakestore.net\",\r\n \"accountId\": \"bd040dfc-2595-41b1-9d65-3805af6694b7\",\r\n \"creationTime\": \"2017-07-24T22:56:15.9066011Z\",\r\n \"lastModifiedTime\": \"2017-07-24T22:56:15.9066011Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg16083/providers/Microsoft.DataLakeStore/accounts/testadlfs11101\",\r\n \"name\": \"testadlfs11101\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -472,7 +481,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 19:13:59 GMT" + "Mon, 24 Jul 2017 22:56:44 GMT" ], "Pragma": [ "no-cache" @@ -484,7 +493,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "3bd3dd15-d7a5-4629-b091-e274db5e0bff" + "22a715a5-5e8a-41c5-a615-4e1c9c538932" ], "X-Content-Type-Options": [ "nosniff" @@ -496,13 +505,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14982" ], "x-ms-correlation-request-id": [ - "659788d4-cea4-4e14-a088-5dd98a577de4" + "ebdb8c59-b695-400c-93e0-4af84661002c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T191359Z:659788d4-cea4-4e14-a088-5dd98a577de4" + "WESTUS2:20170724T225644Z:ebdb8c59-b695-400c-93e0-4af84661002c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -511,22 +520,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1488/providers/Microsoft.DataLakeStore/accounts/testadlfs15112?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxNTExMj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg16083/providers/Microsoft.DataLakeStore/accounts/testadlfs11101?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjA4My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTExMDE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0a010956-061d-43f0-973e-e64326a8298b" + "26871c40-7724-4e89-a6e0-93b870ddd21b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"testadlfs11101.azuredatalakestore.net\",\r\n \"accountId\": \"bd040dfc-2595-41b1-9d65-3805af6694b7\",\r\n \"creationTime\": \"2017-07-24T22:56:15.9066011Z\",\r\n \"lastModifiedTime\": \"2017-07-24T22:56:15.9066011Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg16083/providers/Microsoft.DataLakeStore/accounts/testadlfs11101\",\r\n \"name\": \"testadlfs11101\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -541,7 +551,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 19:13:59 GMT" + "Mon, 24 Jul 2017 22:56:45 GMT" ], "Pragma": [ "no-cache" @@ -553,7 +563,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "49e21a4f-b144-4b3f-a61e-9bf18fec91a5" + "6f6f703c-4451-4b79-bdbd-c765affe0ee0" ], "X-Content-Type-Options": [ "nosniff" @@ -565,13 +575,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14993" ], "x-ms-correlation-request-id": [ - "735654b2-286f-4282-975e-34b2f55741df" + "94c6071e-b9ed-4b58-9a34-9656fe7e5221" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T191400Z:735654b2-286f-4282-975e-34b2f55741df" + "WESTUS2:20170724T225645Z:94c6071e-b9ed-4b58-9a34-9656fe7e5221" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -580,8 +590,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1488/providers/Microsoft.DataLakeStore/accounts/testadlfs15112?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxNTExMj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg16083/providers/Microsoft.DataLakeStore/accounts/testadlfs11101?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjA4My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTExMDE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -592,19 +602,20 @@ "31" ], "x-ms-client-request-id": [ - "e052af71-9cf3-4347-aae0-93c2df2c2581" + "db290bf2-cd21-4088-9b72-d01ddae49a84" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"bd040dfc-2595-41b1-9d65-3805af6694b7\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg16083/providers/Microsoft.DataLakeStore/accounts/testadlfs11101\",\r\n \"name\": \"testadlfs11101\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "419" + "420" ], "Content-Type": [ "application/json" @@ -619,13 +630,13 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 19:13:28 GMT" + "Mon, 24 Jul 2017 22:56:13 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1488/providers/Microsoft.DataLakeStore/accounts/testadlfs15112/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg16083/providers/Microsoft.DataLakeStore/accounts/testadlfs11101/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -634,10 +645,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "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" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/bd040dfc-2595-41b1-9d65-3805af6694b70?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "14bec612-d33b-4463-843f-96a587edcf83" + "b9c379df-b08d-4945-905a-b04b16aaf509" ], "X-Content-Type-Options": [ "nosniff" @@ -649,13 +660,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1192" ], "x-ms-correlation-request-id": [ - "c320c10b-e49d-4c1e-a413-dcdb291ed72e" + "bc5970b8-5c90-4a2d-900a-68a73e7999ec" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T191328Z:c320c10b-e49d-4c1e-a413-dcdb291ed72e" + "WESTUS2:20170724T225613Z:bc5970b8-5c90-4a2d-900a-68a73e7999ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -664,13 +675,14 @@ "StatusCode": 201 }, { - "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", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/bd040dfc-2595-41b1-9d65-3805af6694b70?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2JkMDQwZGZjLTI1OTUtNDFiMS05ZDY1LTM4MDVhZjY2OTRiNzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -688,7 +700,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 19:13:58 GMT" + "Mon, 24 Jul 2017 22:56:43 GMT" ], "Pragma": [ "no-cache" @@ -700,7 +712,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "0cb6ebd1-c918-4e61-89f2-d463233bc010" + "7e278c63-31a4-4e35-805c-a7619d048512" ], "X-Content-Type-Options": [ "nosniff" @@ -712,13 +724,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14991" ], "x-ms-correlation-request-id": [ - "1767f323-ddeb-4161-8efd-7a33dc647b29" + "c403b68b-65db-4113-ba47-685ef05024d6" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T191359Z:1767f323-ddeb-4161-8efd-7a33dc647b29" + "WESTUS2:20170724T225644Z:c403b68b-65db-4113-ba47-685ef05024d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,16 +745,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c7db32e0-19b7-41a3-9223-59e454442df7" + "6ae89b0f-f5fb-44c9-a1f8-35d332a7004f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"AclStatus\": {\r\n \"entries\": [\r\n \"group::rwx\"\r\n ],\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"770\",\r\n \"stickyBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "171" @@ -757,16 +770,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 19:14:05 GMT" + "Mon, 24 Jul 2017 22:56:47 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "8739d2f5-0083-49a5-85f2-c8ddf5577726" + "237443c8-6b92-4319-8eea-b767191fb3d7" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -787,16 +800,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5b2cfac5-9b46-4a4b-b3c3-73d2834b40fe" + "dd678a21-07ed-4b7c-acdf-0b96fb4abdd4" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "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\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"770\",\r\n \"stickyBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "219" @@ -811,16 +825,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 19:14:05 GMT" + "Mon, 24 Jul 2017 22:56:47 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "fa71f658-d937-4aaf-8f40-7c81a760113a" + "00a08c7f-590f-4414-b786-3c120fee3701" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -841,13 +855,14 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c4e08d9c-ad29-4e82-b101-dbf332e5ffb7" + "1301fd19-eee1-4278-bb92-4efd9f3e96ff" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "", @@ -862,19 +877,19 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 19:14:05 GMT" + "Mon, 24 Jul 2017 22:56:47 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "8fbfbd0a-a3d8-4e26-83e6-9b3b9562ebe3" + "54e59d74-27d1-4586-84f6-d3f57946c7af" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -891,12 +906,12 @@ ], "Names": { ".ctor": [ - "datalakerg1488", - "testdatalake19929", - "testadlfs15112" + "datalakerg16083", + "testdatalake1209", + "testadlfs11101" ] }, "Variables": { - "SubscriptionId": "53d9063d-87ae-4ea8-be90-3686c3b8669f" + "SubscriptionId": "04319d6d-4a66-4701-bb2f-e7dbbd9ae4db" } } \ No newline at end of file diff --git a/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemSetAndRemoveExpiry.json b/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemSetAndRemoveExpiry.json index 0c97f63b40a9..bc7b6fbc472c 100644 --- a/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemSetAndRemoveExpiry.json +++ b/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemSetAndRemoveExpiry.json @@ -1,22 +1,23 @@ { "Entries": [ { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e606a538-ea1d-4ce5-9d1c-d26c581d2b74" + "237ff236-0fec-4f07-a3a7-6e1468efd65e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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" @@ -28,7 +29,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:08:03 GMT" + "Mon, 24 Jul 2017 23:07:45 GMT" ], "Pragma": [ "no-cache" @@ -40,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1187" ], "x-ms-request-id": [ - "b17b2c4c-8472-40d4-ba78-3b079cf8adce" + "105013d0-d8d1-475a-a76c-dee886f39ec4" ], "x-ms-correlation-request-id": [ - "b17b2c4c-8472-40d4-ba78-3b079cf8adce" + "105013d0-d8d1-475a-a76c-dee886f39ec4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T180803Z:b17b2c4c-8472-40d4-ba78-3b079cf8adce" + "WESTUS2:20170724T230746Z:105013d0-d8d1-475a-a76c-dee886f39ec4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -58,22 +59,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2f59cc2c-d5f2-4ffd-866d-a161eabe2907" + "2371b27e-8591-4b9a-8892-0224bccb2d72" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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" @@ -85,7 +87,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:08:03 GMT" + "Mon, 24 Jul 2017 23:07:45 GMT" ], "Pragma": [ "no-cache" @@ -94,16 +96,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14968" ], "x-ms-request-id": [ - "abc68f2b-21f7-4be3-b215-a40a85d574cc" + "2adb0b2f-fce1-43c9-aacc-cdf55e0c34c6" ], "x-ms-correlation-request-id": [ - "abc68f2b-21f7-4be3-b215-a40a85d574cc" + "2adb0b2f-fce1-43c9-aacc-cdf55e0c34c6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T180803Z:abc68f2b-21f7-4be3-b215-a40a85d574cc" + "WESTUS2:20170724T230746Z:2adb0b2f-fce1-43c9-aacc-cdf55e0c34c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -112,22 +114,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1fa657c2-60d7-4932-9ed7-4e41596f7327" + "eb8bb05a-7247-4d1d-83ce-322ddc3edebf" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/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 \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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 \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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,7 +142,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:08:04 GMT" + "Mon, 24 Jul 2017 23:07:47 GMT" ], "Pragma": [ "no-cache" @@ -151,16 +154,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1186" ], "x-ms-request-id": [ - "5f1f7203-8da3-43e9-b6a4-ab8059393cfd" + "a035b462-d617-4cc8-b70e-aacc88bfc179" ], "x-ms-correlation-request-id": [ - "5f1f7203-8da3-43e9-b6a4-ab8059393cfd" + "a035b462-d617-4cc8-b70e-aacc88bfc179" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T180804Z:5f1f7203-8da3-43e9-b6a4-ab8059393cfd" + "WESTUS2:20170724T230747Z:a035b462-d617-4cc8-b70e-aacc88bfc179" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -169,22 +172,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6d41bca1-3556-42e3-93a2-febcfc74d969" + "39d9b136-c14b-42cc-bd3d-2e646719e4c2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/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 \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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 \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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" @@ -196,7 +200,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:08:04 GMT" + "Mon, 24 Jul 2017 23:07:47 GMT" ], "Pragma": [ "no-cache" @@ -205,16 +209,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14967" ], "x-ms-request-id": [ - "42b69eb2-dc4e-41b8-b68d-69337e2065ca" + "31065cfc-1721-4b7a-891d-24c0abb874ce" ], "x-ms-correlation-request-id": [ - "42b69eb2-dc4e-41b8-b68d-69337e2065ca" + "31065cfc-1721-4b7a-891d-24c0abb874ce" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T180804Z:42b69eb2-dc4e-41b8-b68d-69337e2065ca" + "WESTUS2:20170724T230747Z:31065cfc-1721-4b7a-891d-24c0abb874ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -223,22 +227,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13679?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzY3OT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg17849?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzg0OT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "49c20109-179d-4db5-a89a-ec35cd83b931" + "b36d9bbd-382d-4034-8226-e1487b067e37" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg13679' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg17849' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -253,7 +258,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:08:04 GMT" + "Mon, 24 Jul 2017 23:07:47 GMT" ], "Pragma": [ "no-cache" @@ -262,16 +267,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14966" ], "x-ms-request-id": [ - "9cc4c9c2-2672-465a-93b5-6ff99a9e66f1" + "4bee4072-71bc-4220-b619-f89cd0d5ce9c" ], "x-ms-correlation-request-id": [ - "9cc4c9c2-2672-465a-93b5-6ff99a9e66f1" + "4bee4072-71bc-4220-b619-f89cd0d5ce9c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T180804Z:9cc4c9c2-2672-465a-93b5-6ff99a9e66f1" + "WESTUS2:20170724T230748Z:4bee4072-71bc-4220-b619-f89cd0d5ce9c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -280,22 +285,23 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13679?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzY3OT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg17849?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzg0OT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "46d14e16-dc0e-413c-a86f-2cec8d4972f3" + "4460fd0c-16b8-45d4-8533-844e6de8a670" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg17849\",\r\n \"name\": \"datalakerg17849\",\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 +313,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:08:05 GMT" + "Mon, 24 Jul 2017 23:07:49 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +322,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14965" ], "x-ms-request-id": [ - "8c4adfe5-1f39-46b2-8e02-43def13c76d4" + "196e8df6-7a79-485c-8f3c-5a0c08f32400" ], "x-ms-correlation-request-id": [ - "8c4adfe5-1f39-46b2-8e02-43def13c76d4" + "196e8df6-7a79-485c-8f3c-5a0c08f32400" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T180805Z:8c4adfe5-1f39-46b2-8e02-43def13c76d4" + "WESTUS2:20170724T230749Z:196e8df6-7a79-485c-8f3c-5a0c08f32400" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +340,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13679?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzY3OT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg17849?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzg0OT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,16 +352,17 @@ "31" ], "x-ms-client-request-id": [ - "2d2272c6-66bb-4677-b7e2-fa3529955c72" + "bf947325-c72e-4e9a-b3ac-6af9243cd658" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg17849\",\r\n \"name\": \"datalakerg17849\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -370,22 +377,22 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:08:04 GMT" + "Mon, 24 Jul 2017 23:07:49 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1185" ], "x-ms-request-id": [ - "881fbd67-0751-455f-ac33-0d87c5fa3bb8" + "4e5b28dc-18b2-40be-9d38-466d11ad36d2" ], "x-ms-correlation-request-id": [ - "881fbd67-0751-455f-ac33-0d87c5fa3bb8" + "4e5b28dc-18b2-40be-9d38-466d11ad36d2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T180805Z:881fbd67-0751-455f-ac33-0d87c5fa3bb8" + "WESTUS2:20170724T230749Z:4e5b28dc-18b2-40be-9d38-466d11ad36d2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -394,22 +401,23 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13679/providers/Microsoft.DataLakeStore/accounts/testadlfs13045?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzY3OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTMwNDU/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg17849/providers/Microsoft.DataLakeStore/accounts/testadlfs13567?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzg0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTM1Njc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a81a19ab-85fa-4003-a7ad-e830d566899a" + "5158e06d-0781-4fa4-9c3c-aa0cce3dca8f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs13567' under resource group 'datalakerg17849' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "166" @@ -424,7 +432,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:08:05 GMT" + "Mon, 24 Jul 2017 23:07:49 GMT" ], "Pragma": [ "no-cache" @@ -433,13 +441,13 @@ "gateway" ], "x-ms-request-id": [ - "6c2eee77-f49e-41b7-bc78-f8e036bffa78" + "e6f2200f-6cdb-4f90-ba5d-179273bca215" ], "x-ms-correlation-request-id": [ - "6c2eee77-f49e-41b7-bc78-f8e036bffa78" + "e6f2200f-6cdb-4f90-ba5d-179273bca215" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T180806Z:6c2eee77-f49e-41b7-bc78-f8e036bffa78" + "WESTUS2:20170724T230750Z:e6f2200f-6cdb-4f90-ba5d-179273bca215" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -448,16 +456,17 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13679/providers/Microsoft.DataLakeStore/accounts/testadlfs13045?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzY3OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTMwNDU/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg17849/providers/Microsoft.DataLakeStore/accounts/testadlfs13567?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzg0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTM1Njc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"testadlfs13567.azuredatalakestore.net\",\r\n \"accountId\": \"8833834b-eddb-4b7a-b9e7-0d5b2078c436\",\r\n \"creationTime\": \"2017-07-24T23:07:53.2874604Z\",\r\n \"lastModifiedTime\": \"2017-07-24T23:07:53.2874604Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg17849/providers/Microsoft.DataLakeStore/accounts/testadlfs13567\",\r\n \"name\": \"testadlfs13567\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -472,7 +481,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:08:37 GMT" + "Mon, 24 Jul 2017 23:08:24 GMT" ], "Pragma": [ "no-cache" @@ -484,7 +493,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "5db1ba4e-f3b6-41a3-b15e-45535f74d5c2" + "bad7f084-3b8e-454f-8c16-874ecd59d21b" ], "X-Content-Type-Options": [ "nosniff" @@ -496,13 +505,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14979" ], "x-ms-correlation-request-id": [ - "527f7293-cf9c-423d-8a0a-94d572f7df72" + "fa601e2a-cccc-4fbe-84ac-5d8da6130c50" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T180838Z:527f7293-cf9c-423d-8a0a-94d572f7df72" + "WESTUS2:20170724T230824Z:fa601e2a-cccc-4fbe-84ac-5d8da6130c50" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -511,22 +520,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13679/providers/Microsoft.DataLakeStore/accounts/testadlfs13045?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzY3OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTMwNDU/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg17849/providers/Microsoft.DataLakeStore/accounts/testadlfs13567?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzg0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTM1Njc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1be082d8-1f74-41d6-8dde-f55a5c6b3c90" + "c653a9e3-c915-48da-8996-e573d57a18c8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"testadlfs13567.azuredatalakestore.net\",\r\n \"accountId\": \"8833834b-eddb-4b7a-b9e7-0d5b2078c436\",\r\n \"creationTime\": \"2017-07-24T23:07:53.2874604Z\",\r\n \"lastModifiedTime\": \"2017-07-24T23:07:53.2874604Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg17849/providers/Microsoft.DataLakeStore/accounts/testadlfs13567\",\r\n \"name\": \"testadlfs13567\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -541,7 +551,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:08:38 GMT" + "Mon, 24 Jul 2017 23:08:24 GMT" ], "Pragma": [ "no-cache" @@ -553,7 +563,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "3771397c-3677-43e0-b893-a155bc1e8647" + "15e548dc-bdda-4ac9-bb61-da07557dbb04" ], "X-Content-Type-Options": [ "nosniff" @@ -565,13 +575,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14964" ], "x-ms-correlation-request-id": [ - "c4b91ac8-d645-46cd-96c0-f93289a38fd9" + "6ebb6e84-2e6f-42aa-a934-69b61f09b60e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T180839Z:c4b91ac8-d645-46cd-96c0-f93289a38fd9" + "WESTUS2:20170724T230824Z:6ebb6e84-2e6f-42aa-a934-69b61f09b60e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -580,8 +590,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13679/providers/Microsoft.DataLakeStore/accounts/testadlfs13045?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzY3OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTMwNDU/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg17849/providers/Microsoft.DataLakeStore/accounts/testadlfs13567?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzg0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTM1Njc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -592,16 +602,17 @@ "31" ], "x-ms-client-request-id": [ - "9aa37bf7-147b-4bda-aec2-8dda4d4afcf9" + "15313c88-78c0-4619-a850-8add9b2e9a20" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"8833834b-eddb-4b7a-b9e7-0d5b2078c436\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg17849/providers/Microsoft.DataLakeStore/accounts/testadlfs13567\",\r\n \"name\": \"testadlfs13567\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "420" @@ -619,13 +630,13 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:08:07 GMT" + "Mon, 24 Jul 2017 23:07:52 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13679/providers/Microsoft.DataLakeStore/accounts/testadlfs13045/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg17849/providers/Microsoft.DataLakeStore/accounts/testadlfs13567/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -634,10 +645,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "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" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/8833834b-eddb-4b7a-b9e7-0d5b2078c4360?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "9f66ce8c-769f-487f-89b7-678a494d7e3d" + "2b0f59d4-49a7-423b-b751-709863341a75" ], "X-Content-Type-Options": [ "nosniff" @@ -649,13 +660,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1194" ], "x-ms-correlation-request-id": [ - "d993ade0-7743-4cf9-a72d-62f02ac95719" + "5023f8b2-72c9-4539-aa83-53891ad9fecf" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T180807Z:d993ade0-7743-4cf9-a72d-62f02ac95719" + "WESTUS2:20170724T230752Z:5023f8b2-72c9-4539-aa83-53891ad9fecf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -664,13 +675,14 @@ "StatusCode": 201 }, { - "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", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/8833834b-eddb-4b7a-b9e7-0d5b2078c4360?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzg4MzM4MzRiLWVkZGItNGI3YS1iOWU3LTBkNWIyMDc4YzQzNjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -688,7 +700,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:08:37 GMT" + "Mon, 24 Jul 2017 23:08:22 GMT" ], "Pragma": [ "no-cache" @@ -700,7 +712,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "9dfcc31a-9455-4a1a-8c28-b95369f2bc44" + "1449b34b-5b2f-44ef-bcc0-eb5a2fbdd9e0" ], "X-Content-Type-Options": [ "nosniff" @@ -712,13 +724,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14982" ], "x-ms-correlation-request-id": [ - "2659aaf3-c7ac-4464-924f-746e1361e163" + "ee306814-0b81-4d3c-b23d-74a970b08c14" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T180838Z:2659aaf3-c7ac-4464-924f-746e1361e163" + "WESTUS2:20170724T230823Z:ee306814-0b81-4d3c-b23d-74a970b08c14" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -727,8 +739,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7894?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3ODk0P3N5bmNGbGFnPURBVEEmb3A9Q1JFQVRFJndyaXRlPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt1882?syncFlag=DATA&write=true&op=CREATE&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQxODgyP3N5bmNGbGFnPURBVEEmd3JpdGU9dHJ1ZSZvcD1DUkVBVEUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { @@ -739,13 +751,14 @@ "0" ], "x-ms-client-request-id": [ - "f0f22217-fcc3-426f-bf58-894cedf254bd" + "5b9bd391-5609-4793-b375-48bf5fde2e61" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "", @@ -760,22 +773,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:08:40 GMT" + "Mon, 24 Jul 2017 23:08:28 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs13045.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt7894?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs13567.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt1882?syncFlag=DATA&write=true&op=CREATE&api-version=2016-11-01" ], "x-ms-request-id": [ - "435ca5ca-2948-4199-b340-afe6bf5cbddb" + "616d6af4-aa84-4c8b-9af5-bd80bbcaf992" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -790,22 +803,23 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7894?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3ODk0P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt1882?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQxODgyP29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8ce7f65d-4e0b-42af-8d4e-decfe50589ad" + "c934fbd5-4cd3-470d-8aa9-ee1078818e72" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1500937708804,\r\n \"modificationTime\": 1500937708804,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "304" @@ -820,16 +834,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:08:41 GMT" + "Mon, 24 Jul 2017 23:08:28 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "a7987fe9-13dd-4bc0-b21f-d4b5002ccf82" + "98009862-e358-4b7e-83e6-c5ae4d339b64" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -844,22 +858,23 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7894?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3ODk0P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt1882?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQxODgyP29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0f8e5123-a64e-410f-ad93-2622461d8d44" + "40a08f22-bb08-4eba-b465-dd9ab2915e47" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1500937708804,\r\n \"modificationTime\": 1500937708804,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "304" @@ -874,16 +889,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:08:41 GMT" + "Mon, 24 Jul 2017 23:08:28 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "d8f0a93b-cae0-4fde-b970-8029fab1e512" + "efa1d509-ada4-4026-9603-90d6e38a8a46" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -898,22 +913,23 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7894?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3ODk0P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt1882?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQxODgyP29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cd62cf7b-dbab-40e4-aaef-8e3c5673c78f" + "38e4fe63-5d81-4cd5-a135-9dfe006d98ae" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1500937708804,\r\n \"modificationTime\": 1500937708804,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"msExpirationTime\": 1500937829000,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "316" @@ -928,16 +944,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:08:41 GMT" + "Mon, 24 Jul 2017 23:08:29 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "acb7140d-ff12-431f-9095-e496c507bbbc" + "886d1c31-9d2a-4af1-aa32-3f686e0ce5a7" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -952,22 +968,23 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7894?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3ODk0P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt1882?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQxODgyP29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6780dac9-053a-41d2-9ac7-08f46f520f36" + "013c4f24-8616-4cb8-9c69-2aed57060e11" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1500937708804,\r\n \"modificationTime\": 1500937708804,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"msExpirationTime\": 1500937829812,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "316" @@ -982,16 +999,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:08:42 GMT" + "Mon, 24 Jul 2017 23:08:29 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "2fdb252e-c1a8-45d4-9410-b13b5d10c6b8" + "e409c29e-991f-4bba-b01d-4274035255ff" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -1006,22 +1023,23 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7894?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3ODk0P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt1882?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQxODgyP29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d032efd8-4309-49de-8b61-fafefcc6e024" + "637996de-6d34-4836-8124-01d421367e61" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1500937708804,\r\n \"modificationTime\": 1500937708804,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"msExpirationTime\": 1500937828804,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "316" @@ -1036,16 +1054,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:08:42 GMT" + "Mon, 24 Jul 2017 23:08:30 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "535a048f-90bd-47c5-8012-fa9f4b046495" + "ac321e17-353d-44db-96cb-f1011a1dd075" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -1060,22 +1078,23 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7894?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3ODk0P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt1882?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQxODgyP29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b8bb7b75-828c-4e80-a854-a4e8649719bc" + "fb250a32-6574-4ad9-903c-39207cab829b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1500937708804,\r\n \"modificationTime\": 1500937708804,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "304" @@ -1090,16 +1109,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:08:43 GMT" + "Mon, 24 Jul 2017 23:08:30 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "b2b8ff40-e076-4238-bda9-9a705c8bb009" + "f86833c9-05c1-4b65-bdd5-13603e874e1c" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -1114,19 +1133,20 @@ "StatusCode": 200 }, { - "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt7894?expiryOption=Absolute&expireTime=1490638241000&op=SETEXPIRY&api-version=2016-11-01", - "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3ODk0P2V4cGlyeU9wdGlvbj1BYnNvbHV0ZSZleHBpcmVUaW1lPTE0OTA2MzgyNDEwMDAmb3A9U0VURVhQSVJZJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt1882?expiryOption=Absolute&expireTime=1500937829000&op=SETEXPIRY&api-version=2016-11-01", + "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQxODgyP2V4cGlyeU9wdGlvbj1BYnNvbHV0ZSZleHBpcmVUaW1lPTE1MDA5Mzc4MjkwMDAmb3A9U0VURVhQSVJZJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cd10e439-8588-4fce-888d-7045e7459d87" + "7146ece8-f9b9-48a1-a02b-be2460cd946f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "", @@ -1141,13 +1161,13 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:08:41 GMT" + "Mon, 24 Jul 2017 23:08:29 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "c5b4ab5a-761c-43b2-a535-69e77ec120e9" + "8c4981d1-e693-4cd3-b530-b50a473e8018" ], "X-Content-Type-Options": [ "nosniff" @@ -1159,19 +1179,20 @@ "StatusCode": 200 }, { - "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt7894?expiryOption=RelativeToNow&expireTime=120000&op=SETEXPIRY&api-version=2016-11-01", - "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3ODk0P2V4cGlyeU9wdGlvbj1SZWxhdGl2ZVRvTm93JmV4cGlyZVRpbWU9MTIwMDAwJm9wPVNFVEVYUElSWSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt1882?expiryOption=RelativeToNow&expireTime=120000&op=SETEXPIRY&api-version=2016-11-01", + "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQxODgyP2V4cGlyeU9wdGlvbj1SZWxhdGl2ZVRvTm93JmV4cGlyZVRpbWU9MTIwMDAwJm9wPVNFVEVYUElSWSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "05d9018f-9864-45c7-947f-eb902cd8cc40" + "ead4a73b-f594-47d7-a853-cfa6f4cd6d96" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "", @@ -1186,13 +1207,13 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:08:41 GMT" + "Mon, 24 Jul 2017 23:08:29 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "bdebc702-609f-41a3-8538-481d6ac4bae8" + "1ea384f1-29a6-4978-94d6-728d6cb1ffe0" ], "X-Content-Type-Options": [ "nosniff" @@ -1204,19 +1225,20 @@ "StatusCode": 200 }, { - "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt7894?expiryOption=RelativeToCreationDate&expireTime=120000&op=SETEXPIRY&api-version=2016-11-01", - "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3ODk0P2V4cGlyeU9wdGlvbj1SZWxhdGl2ZVRvQ3JlYXRpb25EYXRlJmV4cGlyZVRpbWU9MTIwMDAwJm9wPVNFVEVYUElSWSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt1882?expiryOption=RelativeToCreationDate&expireTime=120000&op=SETEXPIRY&api-version=2016-11-01", + "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQxODgyP2V4cGlyeU9wdGlvbj1SZWxhdGl2ZVRvQ3JlYXRpb25EYXRlJmV4cGlyZVRpbWU9MTIwMDAwJm9wPVNFVEVYUElSWSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "87289b3d-f2c9-49b2-b20c-62e2fcdb9c46" + "af05d9ee-2c84-4034-bca4-3a2247448025" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "", @@ -1231,13 +1253,13 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:08:42 GMT" + "Mon, 24 Jul 2017 23:08:29 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "9b5fe3a1-bc46-46d2-b21c-bcc9516e7d33" + "b83d0340-e81a-442f-b143-7ba05493ae70" ], "X-Content-Type-Options": [ "nosniff" @@ -1249,19 +1271,20 @@ "StatusCode": 200 }, { - "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt7894?expiryOption=NeverExpire&op=SETEXPIRY&api-version=2016-11-01", - "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3ODk0P2V4cGlyeU9wdGlvbj1OZXZlckV4cGlyZSZvcD1TRVRFWFBJUlkmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt1882?expiryOption=NeverExpire&op=SETEXPIRY&api-version=2016-11-01", + "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQxODgyP2V4cGlyeU9wdGlvbj1OZXZlckV4cGlyZSZvcD1TRVRFWFBJUlkmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9a2fe838-4171-48bd-ac21-de9f19db62ed" + "943acfa3-9e2f-4472-bca4-ee19b7c27cfa" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "", @@ -1276,13 +1299,13 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:08:42 GMT" + "Mon, 24 Jul 2017 23:08:30 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "7155c7e5-8a75-4a1a-b9c7-60a6480d17ef" + "e88d8954-b3f3-4c5b-bd24-e3141626b37e" ], "X-Content-Type-Options": [ "nosniff" @@ -1296,17 +1319,17 @@ ], "Names": { ".ctor": [ - "datalakerg13679", - "testdatalake12576", - "testadlfs13045" + "datalakerg17849", + "testdatalake17682", + "testadlfs13567" ], "CreateFile": [ - "SDKTestFolder01/SDKTestFile01.txt7894" + "SDKTestFolder01/SDKTestFile01.txt1882" ] }, "Variables": { - "SubscriptionId": "53d9063d-87ae-4ea8-be90-3686c3b8669f", - "absoluteTime": "3/27/2017 6:10:41 PM", - "relativeTime": "3/27/2017 6:10:41 PM" + "SubscriptionId": "04319d6d-4a66-4701-bb2f-e7dbbd9ae4db", + "absoluteTime": "7/24/2017 11:10:29 PM", + "relativeTime": "7/24/2017 11:10:29 PM" } } \ No newline at end of file diff --git a/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemSetDeleteAclEntry.json b/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemSetDeleteAclEntry.json index 66609da10c85..a8c96ff444c1 100644 --- a/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemSetDeleteAclEntry.json +++ b/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemSetDeleteAclEntry.json @@ -1,22 +1,23 @@ { "Entries": [ { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e804d64a-7af3-4133-9c47-af65af5e330c" + "598285bc-a20d-4462-8148-eb49d88a70a5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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" @@ -28,7 +29,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 19:12:42 GMT" + "Mon, 24 Jul 2017 22:47:18 GMT" ], "Pragma": [ "no-cache" @@ -43,13 +44,13 @@ "1194" ], "x-ms-request-id": [ - "fe3188e4-03c2-4482-8b8c-86870f4385bb" + "3765ee3c-dbd7-47af-8a80-74ffd0f7361a" ], "x-ms-correlation-request-id": [ - "fe3188e4-03c2-4482-8b8c-86870f4385bb" + "3765ee3c-dbd7-47af-8a80-74ffd0f7361a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T191242Z:fe3188e4-03c2-4482-8b8c-86870f4385bb" + "WESTUS2:20170724T224718Z:3765ee3c-dbd7-47af-8a80-74ffd0f7361a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -58,22 +59,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "194ec3e0-7494-4530-9964-c2dc3cee6f53" + "a0ee68e8-4733-4215-b9df-978a35e2dcc8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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" @@ -85,7 +87,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 19:12:42 GMT" + "Mon, 24 Jul 2017 22:47:18 GMT" ], "Pragma": [ "no-cache" @@ -94,16 +96,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14984" ], "x-ms-request-id": [ - "814f3630-50aa-4d19-8e12-2f20cd8c7b2d" + "edbe880f-c54c-4c38-9b93-9cd96a2573bd" ], "x-ms-correlation-request-id": [ - "814f3630-50aa-4d19-8e12-2f20cd8c7b2d" + "edbe880f-c54c-4c38-9b93-9cd96a2573bd" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T191242Z:814f3630-50aa-4d19-8e12-2f20cd8c7b2d" + "WESTUS2:20170724T224718Z:edbe880f-c54c-4c38-9b93-9cd96a2573bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -112,22 +114,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ffdef342-4b82-44da-a3d4-0f0089b3b44a" + "514d7a4a-ee26-40b4-a0f2-8529e53a546d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/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 \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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 \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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,7 +142,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 19:12:44 GMT" + "Mon, 24 Jul 2017 22:47:19 GMT" ], "Pragma": [ "no-cache" @@ -154,13 +157,13 @@ "1193" ], "x-ms-request-id": [ - "cfe26491-de19-4cfb-8d75-12910c377724" + "999502c3-d561-4088-affb-2e16776d2613" ], "x-ms-correlation-request-id": [ - "cfe26491-de19-4cfb-8d75-12910c377724" + "999502c3-d561-4088-affb-2e16776d2613" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T191244Z:cfe26491-de19-4cfb-8d75-12910c377724" + "WESTUS2:20170724T224719Z:999502c3-d561-4088-affb-2e16776d2613" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -169,22 +172,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "301c3cf7-8495-4f66-a217-6846a9df4ec8" + "e8e78b8d-89f9-4110-b39f-c9c2233eee0f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/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 \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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 \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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" @@ -196,7 +200,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 19:12:44 GMT" + "Mon, 24 Jul 2017 22:47:19 GMT" ], "Pragma": [ "no-cache" @@ -205,16 +209,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14983" ], "x-ms-request-id": [ - "82fcf4b0-a8be-47de-af39-ab354b142f59" + "23a203e8-5b5d-41a4-8e36-444e42a8581c" ], "x-ms-correlation-request-id": [ - "82fcf4b0-a8be-47de-af39-ab354b142f59" + "23a203e8-5b5d-41a4-8e36-444e42a8581c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T191244Z:82fcf4b0-a8be-47de-af39-ab354b142f59" + "WESTUS2:20170724T224719Z:23a203e8-5b5d-41a4-8e36-444e42a8581c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -223,22 +227,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19346?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTM0Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg17727?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzcyNz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d1c2202b-fd61-478d-9c19-a490989d10ea" + "da29b394-b53d-44af-a7f6-10ffbef5fddb" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg19346' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg17727' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -253,7 +258,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 19:12:44 GMT" + "Mon, 24 Jul 2017 22:47:19 GMT" ], "Pragma": [ "no-cache" @@ -262,16 +267,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14982" ], "x-ms-request-id": [ - "e0c1fcc3-dff0-40bf-8bd7-a905bdb9ffff" + "c52b3f87-0892-42ca-b3d2-e8cc63437d65" ], "x-ms-correlation-request-id": [ - "e0c1fcc3-dff0-40bf-8bd7-a905bdb9ffff" + "c52b3f87-0892-42ca-b3d2-e8cc63437d65" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T191244Z:e0c1fcc3-dff0-40bf-8bd7-a905bdb9ffff" + "WESTUS2:20170724T224719Z:c52b3f87-0892-42ca-b3d2-e8cc63437d65" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -280,22 +285,23 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19346?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTM0Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg17727?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzcyNz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "55644b64-0932-4493-8c9e-697387e289e8" + "3f9a7d77-e3c5-4c9d-8bf0-895b722969d3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg17727\",\r\n \"name\": \"datalakerg17727\",\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 +313,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 19:12:45 GMT" + "Mon, 24 Jul 2017 22:47:20 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +322,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14981" ], "x-ms-request-id": [ - "05764321-4830-4fbc-8f33-087c71373318" + "9ef7408f-310a-47f2-a64e-98946e9bd226" ], "x-ms-correlation-request-id": [ - "05764321-4830-4fbc-8f33-087c71373318" + "9ef7408f-310a-47f2-a64e-98946e9bd226" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T191245Z:05764321-4830-4fbc-8f33-087c71373318" + "WESTUS2:20170724T224721Z:9ef7408f-310a-47f2-a64e-98946e9bd226" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +340,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19346?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTM0Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg17727?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzcyNz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,16 +352,17 @@ "31" ], "x-ms-client-request-id": [ - "cab031d6-a9dc-4b83-bf06-ecd2954b3bfd" + "fa799699-b087-4af2-ae63-ed73475bfc9e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg17727\",\r\n \"name\": \"datalakerg17727\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -370,7 +377,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 19:12:45 GMT" + "Mon, 24 Jul 2017 22:47:20 GMT" ], "Pragma": [ "no-cache" @@ -379,13 +386,13 @@ "1192" ], "x-ms-request-id": [ - "4909e90f-5723-4e54-8745-25651a51b64a" + "cae4ea3d-45f0-4e5c-8dac-6994dff4294e" ], "x-ms-correlation-request-id": [ - "4909e90f-5723-4e54-8745-25651a51b64a" + "cae4ea3d-45f0-4e5c-8dac-6994dff4294e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T191245Z:4909e90f-5723-4e54-8745-25651a51b64a" + "WESTUS2:20170724T224721Z:cae4ea3d-45f0-4e5c-8dac-6994dff4294e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -394,22 +401,23 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19346/providers/Microsoft.DataLakeStore/accounts/testadlfs17533?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTM0Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc1MzM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg17727/providers/Microsoft.DataLakeStore/accounts/testadlfs18929?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTg5Mjk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "92f82a5e-e25e-498c-a776-d72badc5a567" + "a4e36aeb-c1ae-4345-a94f-b56b0d8423a3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs18929' under resource group 'datalakerg17727' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "166" @@ -424,7 +432,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 19:12:45 GMT" + "Mon, 24 Jul 2017 22:47:20 GMT" ], "Pragma": [ "no-cache" @@ -433,13 +441,13 @@ "gateway" ], "x-ms-request-id": [ - "c10ef177-ca22-4122-9976-cd39798eb5c9" + "9ac485bb-d688-4ed7-bb47-0c5e90ae1ca9" ], "x-ms-correlation-request-id": [ - "c10ef177-ca22-4122-9976-cd39798eb5c9" + "9ac485bb-d688-4ed7-bb47-0c5e90ae1ca9" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T191246Z:c10ef177-ca22-4122-9976-cd39798eb5c9" + "WESTUS2:20170724T224721Z:9ac485bb-d688-4ed7-bb47-0c5e90ae1ca9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -448,16 +456,17 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19346/providers/Microsoft.DataLakeStore/accounts/testadlfs17533?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTM0Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc1MzM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg17727/providers/Microsoft.DataLakeStore/accounts/testadlfs18929?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTg5Mjk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"testadlfs18929.azuredatalakestore.net\",\r\n \"accountId\": \"4b0356c8-3d7f-423f-ac99-bc9dc674adf4\",\r\n \"creationTime\": \"2017-07-24T22:47:26.7801986Z\",\r\n \"lastModifiedTime\": \"2017-07-24T22:47:26.7801986Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg17727/providers/Microsoft.DataLakeStore/accounts/testadlfs18929\",\r\n \"name\": \"testadlfs18929\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -472,7 +481,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 19:13:19 GMT" + "Mon, 24 Jul 2017 22:47:54 GMT" ], "Pragma": [ "no-cache" @@ -484,7 +493,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "4ca90cff-88bf-469e-86ec-afbc32c40bf2" + "f170b51a-2138-481c-97a7-cac28f4dc64c" ], "X-Content-Type-Options": [ "nosniff" @@ -496,13 +505,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14985" ], "x-ms-correlation-request-id": [ - "8ee08450-5215-462c-bead-3eb2dcf67821" + "89c1f7ff-42a0-4a32-8cd5-75af0b87a587" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T191319Z:8ee08450-5215-462c-bead-3eb2dcf67821" + "WESTUS2:20170724T224755Z:89c1f7ff-42a0-4a32-8cd5-75af0b87a587" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -511,22 +520,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19346/providers/Microsoft.DataLakeStore/accounts/testadlfs17533?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTM0Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc1MzM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg17727/providers/Microsoft.DataLakeStore/accounts/testadlfs18929?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTg5Mjk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d7833581-7009-447b-bfc8-6b5d4c89aba8" + "88c180df-14e0-4ac7-9b3f-84ecb2d3a827" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"testadlfs18929.azuredatalakestore.net\",\r\n \"accountId\": \"4b0356c8-3d7f-423f-ac99-bc9dc674adf4\",\r\n \"creationTime\": \"2017-07-24T22:47:26.7801986Z\",\r\n \"lastModifiedTime\": \"2017-07-24T22:47:26.7801986Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg17727/providers/Microsoft.DataLakeStore/accounts/testadlfs18929\",\r\n \"name\": \"testadlfs18929\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -541,7 +551,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 19:13:19 GMT" + "Mon, 24 Jul 2017 22:47:55 GMT" ], "Pragma": [ "no-cache" @@ -553,7 +563,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "75f108d8-fdd8-4376-9dcd-c85b6c84e3d4" + "6f4b437c-52c8-483f-b069-fbe9739961fe" ], "X-Content-Type-Options": [ "nosniff" @@ -565,13 +575,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14982" ], "x-ms-correlation-request-id": [ - "c29ffc37-6608-49fe-9149-6d72466966de" + "084fa49b-6cdd-49ad-b8e9-4be56582dde3" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T191320Z:c29ffc37-6608-49fe-9149-6d72466966de" + "WESTUS2:20170724T224756Z:084fa49b-6cdd-49ad-b8e9-4be56582dde3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -580,8 +590,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19346/providers/Microsoft.DataLakeStore/accounts/testadlfs17533?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTM0Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc1MzM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg17727/providers/Microsoft.DataLakeStore/accounts/testadlfs18929?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTg5Mjk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -592,16 +602,17 @@ "31" ], "x-ms-client-request-id": [ - "d2acedba-ec84-4579-a886-773e12a7baa0" + "bb5f40e1-caf7-4e64-9a76-200cc8af132b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"4b0356c8-3d7f-423f-ac99-bc9dc674adf4\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg17727/providers/Microsoft.DataLakeStore/accounts/testadlfs18929\",\r\n \"name\": \"testadlfs18929\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "420" @@ -619,13 +630,13 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 19:12:48 GMT" + "Mon, 24 Jul 2017 22:47:23 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19346/providers/Microsoft.DataLakeStore/accounts/testadlfs17533/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg17727/providers/Microsoft.DataLakeStore/accounts/testadlfs18929/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -634,10 +645,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "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" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/4b0356c8-3d7f-423f-ac99-bc9dc674adf40?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "dbdbdf72-ae91-4256-9df5-b1655a6f956b" + "04eab81d-e4ff-4c49-b71d-7ee9f5ce165b" ], "X-Content-Type-Options": [ "nosniff" @@ -649,13 +660,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1199" ], "x-ms-correlation-request-id": [ - "f9c8143e-5176-4b34-92b6-85ede6339c7f" + "3dd43e89-b37a-4b4b-916f-b02daca0944b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T191248Z:f9c8143e-5176-4b34-92b6-85ede6339c7f" + "WESTUS2:20170724T224723Z:3dd43e89-b37a-4b4b-916f-b02daca0944b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -664,13 +675,14 @@ "StatusCode": 201 }, { - "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", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/4b0356c8-3d7f-423f-ac99-bc9dc674adf40?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzRiMDM1NmM4LTNkN2YtNDIzZi1hYzk5LWJjOWRjNjc0YWRmNDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -688,7 +700,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 19:13:18 GMT" + "Mon, 24 Jul 2017 22:47:54 GMT" ], "Pragma": [ "no-cache" @@ -700,7 +712,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "606cfb13-0cf5-43a8-89de-ee72eaba80a1" + "d4f743ec-b571-4f86-9af5-30261bcc7509" ], "X-Content-Type-Options": [ "nosniff" @@ -712,13 +724,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14980" ], "x-ms-correlation-request-id": [ - "94902934-c8ad-474a-a29e-3c134552284a" + "febf5752-963b-4729-b48c-53afdfe018eb" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T191319Z:94902934-c8ad-474a-a29e-3c134552284a" + "WESTUS2:20170724T224754Z:febf5752-963b-4729-b48c-53afdfe018eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,16 +745,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "15ce505d-a7e0-4399-ac56-06e18f628366" + "065669a8-3d5c-460f-bc74-93e5efcbbc0c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"AclStatus\": {\r\n \"entries\": [\r\n \"group::rwx\"\r\n ],\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"770\",\r\n \"stickyBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "171" @@ -757,16 +770,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 19:13:21 GMT" + "Mon, 24 Jul 2017 22:47:58 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "4546c71b-8605-4da3-8493-75db2465e80b" + "c8465767-4e1c-479d-9b4a-63c9450604d8" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -787,16 +800,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7bc6ee8e-aae1-4d48-9bf3-680d51351eb1" + "0706e8cb-e254-44ea-8441-12df747060ba" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "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\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"770\",\r\n \"stickyBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "219" @@ -811,16 +825,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 19:13:22 GMT" + "Mon, 24 Jul 2017 22:47:58 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "958314a5-1520-4c03-bbb8-93e7864ba7a9" + "fdcb66b1-16bb-463c-93d8-12af8edaf5e3" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -841,16 +855,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ed555acb-3c2b-4b0f-b919-8801e9d41212" + "3a3941cc-8335-4af9-98fe-f583d59563d6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"AclStatus\": {\r\n \"entries\": [\r\n \"group::rwx\"\r\n ],\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"770\",\r\n \"stickyBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "171" @@ -865,16 +880,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 19:13:22 GMT" + "Mon, 24 Jul 2017 22:47:58 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "21a15ce0-0293-430d-80f6-1c5781ffd892" + "d6f0a620-56ba-4e8d-bcc0-356f29e6af82" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -895,13 +910,14 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c444285d-e4f3-4d76-b60b-a43f6818032b" + "1030e815-4d23-43e7-8577-8263586dc9fe" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "", @@ -916,19 +932,19 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 19:13:22 GMT" + "Mon, 24 Jul 2017 22:47:58 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "948c1cc1-c311-4f61-a176-93d89ec1e910" + "4cc5af76-875e-4466-bfbc-d58184d93cd3" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -949,13 +965,14 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1d7a7663-2501-4fb6-ac90-a78ab8f0e86b" + "a272befd-e19b-4535-8552-a5b612a32b52" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "", @@ -970,19 +987,19 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 19:13:22 GMT" + "Mon, 24 Jul 2017 22:47:58 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "fb6a8e21-fa9c-44ca-acf9-70d7aec03d6f" + "94bdaa32-81d4-4716-afd7-66de750d0eb7" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -999,12 +1016,12 @@ ], "Names": { ".ctor": [ - "datalakerg19346", - "testdatalake17911", - "testadlfs17533" + "datalakerg17727", + "testdatalake18952", + "testadlfs18929" ] }, "Variables": { - "SubscriptionId": "53d9063d-87ae-4ea8-be90-3686c3b8669f" + "SubscriptionId": "04319d6d-4a66-4701-bb2f-e7dbbd9ae4db" } } \ No newline at end of file diff --git a/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemSetFileProperties.json b/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemSetFileProperties.json index 4a4f2e02a640..7c9e1055ba45 100644 --- a/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemSetFileProperties.json +++ b/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemSetFileProperties.json @@ -1,22 +1,23 @@ { "Entries": [ { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d38068b3-75b6-4a72-901b-46af04116108" + "ed86d93e-0c50-4b82-80b3-5b70aefaa4f3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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" @@ -28,7 +29,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:13:47 GMT" + "Mon, 24 Jul 2017 22:50:31 GMT" ], "Pragma": [ "no-cache" @@ -40,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1195" ], "x-ms-request-id": [ - "d7e408e9-f380-4038-9172-99c85ea38474" + "04a7927c-abea-4b3c-8313-909a6a83a7d6" ], "x-ms-correlation-request-id": [ - "d7e408e9-f380-4038-9172-99c85ea38474" + "04a7927c-abea-4b3c-8313-909a6a83a7d6" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181347Z:d7e408e9-f380-4038-9172-99c85ea38474" + "WESTUS2:20170724T225032Z:04a7927c-abea-4b3c-8313-909a6a83a7d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -58,22 +59,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a198f238-9b39-424d-aca7-b30e6a6699ca" + "bd88dbbf-e0ed-4d50-9ee8-e97ea7d0d22c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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" @@ -85,7 +87,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:13:47 GMT" + "Mon, 24 Jul 2017 22:50:31 GMT" ], "Pragma": [ "no-cache" @@ -94,16 +96,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14906" ], "x-ms-request-id": [ - "bb209fcc-7542-49bf-b825-e8b9e798f327" + "3a2a4cd1-27e5-40df-b7e7-3dc16dd7e9a0" ], "x-ms-correlation-request-id": [ - "bb209fcc-7542-49bf-b825-e8b9e798f327" + "3a2a4cd1-27e5-40df-b7e7-3dc16dd7e9a0" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181347Z:bb209fcc-7542-49bf-b825-e8b9e798f327" + "WESTUS2:20170724T225032Z:3a2a4cd1-27e5-40df-b7e7-3dc16dd7e9a0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -112,22 +114,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "64643e19-e708-4a2d-93a3-72d40cecac87" + "9c5c946e-add9-46ae-9687-548cc4c2dc9b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/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 \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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 \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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,7 +142,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:13:48 GMT" + "Mon, 24 Jul 2017 22:50:32 GMT" ], "Pragma": [ "no-cache" @@ -151,16 +154,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1194" ], "x-ms-request-id": [ - "520d0004-f017-4eb2-a40a-5d6313f5c9cc" + "18e355ce-3964-4b8b-adce-88c5ebcc5a3a" ], "x-ms-correlation-request-id": [ - "520d0004-f017-4eb2-a40a-5d6313f5c9cc" + "18e355ce-3964-4b8b-adce-88c5ebcc5a3a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181348Z:520d0004-f017-4eb2-a40a-5d6313f5c9cc" + "WESTUS2:20170724T225033Z:18e355ce-3964-4b8b-adce-88c5ebcc5a3a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -169,22 +172,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aab2bf30-5122-491d-9571-53ae8b4fe7b5" + "8529b340-6dac-4df2-b196-3592375d0c64" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/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 \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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 \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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" @@ -196,7 +200,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:13:48 GMT" + "Mon, 24 Jul 2017 22:50:32 GMT" ], "Pragma": [ "no-cache" @@ -205,16 +209,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14905" ], "x-ms-request-id": [ - "048611c6-99d6-424c-8640-d4c368d80384" + "f51d3123-a1c0-4a6d-8615-9faa5fd8c2bb" ], "x-ms-correlation-request-id": [ - "048611c6-99d6-424c-8640-d4c368d80384" + "f51d3123-a1c0-4a6d-8615-9faa5fd8c2bb" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181348Z:048611c6-99d6-424c-8640-d4c368d80384" + "WESTUS2:20170724T225033Z:f51d3123-a1c0-4a6d-8615-9faa5fd8c2bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -223,22 +227,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg16455?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNjQ1NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg15413?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNTQxMz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cfeaac91-a4fb-41eb-97c6-40503f251694" + "3e67658f-f42d-42b4-9edf-a95d7b2aaa89" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg16455' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg15413' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -253,7 +258,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:13:48 GMT" + "Mon, 24 Jul 2017 22:50:32 GMT" ], "Pragma": [ "no-cache" @@ -262,16 +267,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14904" ], "x-ms-request-id": [ - "b5d7ce47-0fa5-4459-a6e8-f758b62e6023" + "e7231099-91b4-48de-8e9c-b60c611eb5e7" ], "x-ms-correlation-request-id": [ - "b5d7ce47-0fa5-4459-a6e8-f758b62e6023" + "e7231099-91b4-48de-8e9c-b60c611eb5e7" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181348Z:b5d7ce47-0fa5-4459-a6e8-f758b62e6023" + "WESTUS2:20170724T225033Z:e7231099-91b4-48de-8e9c-b60c611eb5e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -280,22 +285,23 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg16455?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNjQ1NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg15413?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNTQxMz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9e609bcd-2b51-4247-b9ab-20b047b09a83" + "df3dcbe2-c3fe-4fa9-b4c0-4aad47e3668d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg15413\",\r\n \"name\": \"datalakerg15413\",\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 +313,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:13:49 GMT" + "Mon, 24 Jul 2017 22:50:34 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +322,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14903" ], "x-ms-request-id": [ - "9d8f5f8c-6239-46bf-b589-1b6981b7ce8d" + "1fd78139-db1c-4dfb-9c1d-71df733f3b68" ], "x-ms-correlation-request-id": [ - "9d8f5f8c-6239-46bf-b589-1b6981b7ce8d" + "1fd78139-db1c-4dfb-9c1d-71df733f3b68" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181349Z:9d8f5f8c-6239-46bf-b589-1b6981b7ce8d" + "WESTUS2:20170724T225034Z:1fd78139-db1c-4dfb-9c1d-71df733f3b68" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +340,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg16455?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNjQ1NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg15413?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNTQxMz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,16 +352,17 @@ "31" ], "x-ms-client-request-id": [ - "6f04c302-93a3-4e6e-aebf-5e4fd1a5c1c4" + "b77c95a0-4f00-4844-9b76-458509756c30" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg15413\",\r\n \"name\": \"datalakerg15413\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -370,22 +377,22 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:13:49 GMT" + "Mon, 24 Jul 2017 22:50:34 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1193" ], "x-ms-request-id": [ - "ad9bbbb4-3cfe-4f6b-897d-d197b34355f3" + "3ae76557-5e2f-42a5-9311-ffe5e929b301" ], "x-ms-correlation-request-id": [ - "ad9bbbb4-3cfe-4f6b-897d-d197b34355f3" + "3ae76557-5e2f-42a5-9311-ffe5e929b301" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181349Z:ad9bbbb4-3cfe-4f6b-897d-d197b34355f3" + "WESTUS2:20170724T225034Z:3ae76557-5e2f-42a5-9311-ffe5e929b301" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -394,22 +401,23 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16455/providers/Microsoft.DataLakeStore/accounts/testadlfs15527?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTU1Mjc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg15413/providers/Microsoft.DataLakeStore/accounts/testadlfs16890?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNTQxMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTY4OTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1304a8c1-5fa1-47cb-a167-d469ee9017c0" + "2de03a2e-db64-4821-8ba1-548c11e16000" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs16890' under resource group 'datalakerg15413' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "166" @@ -424,7 +432,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:13:49 GMT" + "Mon, 24 Jul 2017 22:50:34 GMT" ], "Pragma": [ "no-cache" @@ -433,13 +441,13 @@ "gateway" ], "x-ms-request-id": [ - "3211424f-86b9-457e-a4b3-68721ee91440" + "ee17d2ce-2472-4895-8803-2e7a23d88ebc" ], "x-ms-correlation-request-id": [ - "3211424f-86b9-457e-a4b3-68721ee91440" + "ee17d2ce-2472-4895-8803-2e7a23d88ebc" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181350Z:3211424f-86b9-457e-a4b3-68721ee91440" + "WESTUS2:20170724T225035Z:ee17d2ce-2472-4895-8803-2e7a23d88ebc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -448,16 +456,17 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16455/providers/Microsoft.DataLakeStore/accounts/testadlfs15527?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTU1Mjc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg15413/providers/Microsoft.DataLakeStore/accounts/testadlfs16890?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNTQxMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTY4OTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"testadlfs16890.azuredatalakestore.net\",\r\n \"accountId\": \"edbc5e62-218c-4b87-b8a0-36798fd33023\",\r\n \"creationTime\": \"2017-07-24T22:50:38.7615261Z\",\r\n \"lastModifiedTime\": \"2017-07-24T22:50:38.7615261Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg15413/providers/Microsoft.DataLakeStore/accounts/testadlfs16890\",\r\n \"name\": \"testadlfs16890\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -472,7 +481,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:14:22 GMT" + "Mon, 24 Jul 2017 22:51:08 GMT" ], "Pragma": [ "no-cache" @@ -484,7 +493,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e342f864-0565-439c-9694-cb081fd1cc39" + "7c90cd48-2db0-469e-a7c7-e2861b3aceef" ], "X-Content-Type-Options": [ "nosniff" @@ -496,13 +505,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14983" ], "x-ms-correlation-request-id": [ - "f32ef63f-1fed-4cb6-b956-5495659ea1e3" + "29fd7a6b-a8b9-40da-aa13-aa9901bbd862" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181423Z:f32ef63f-1fed-4cb6-b956-5495659ea1e3" + "WESTUS2:20170724T225108Z:29fd7a6b-a8b9-40da-aa13-aa9901bbd862" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -511,22 +520,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16455/providers/Microsoft.DataLakeStore/accounts/testadlfs15527?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTU1Mjc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg15413/providers/Microsoft.DataLakeStore/accounts/testadlfs16890?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNTQxMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTY4OTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8d925458-f60e-4a55-80ba-da2ca6240c69" + "a199ce9a-96f2-4396-98f1-31b196c2101a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"testadlfs16890.azuredatalakestore.net\",\r\n \"accountId\": \"edbc5e62-218c-4b87-b8a0-36798fd33023\",\r\n \"creationTime\": \"2017-07-24T22:50:38.7615261Z\",\r\n \"lastModifiedTime\": \"2017-07-24T22:50:38.7615261Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg15413/providers/Microsoft.DataLakeStore/accounts/testadlfs16890\",\r\n \"name\": \"testadlfs16890\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -541,7 +551,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:14:24 GMT" + "Mon, 24 Jul 2017 22:51:08 GMT" ], "Pragma": [ "no-cache" @@ -553,7 +563,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "0148d41c-d71a-4628-87dc-ac340b6c8253" + "4c7c1262-e121-4e2c-a4a2-7fcf0e808962" ], "X-Content-Type-Options": [ "nosniff" @@ -565,13 +575,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14977" ], "x-ms-correlation-request-id": [ - "4d42d83c-1eaa-4b8d-b730-6de294092fe0" + "56cb6cd4-bc81-41e6-b8cb-19064289bc37" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181424Z:4d42d83c-1eaa-4b8d-b730-6de294092fe0" + "WESTUS2:20170724T225109Z:56cb6cd4-bc81-41e6-b8cb-19064289bc37" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -580,8 +590,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16455/providers/Microsoft.DataLakeStore/accounts/testadlfs15527?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTU1Mjc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg15413/providers/Microsoft.DataLakeStore/accounts/testadlfs16890?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNTQxMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTY4OTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -592,16 +602,17 @@ "31" ], "x-ms-client-request-id": [ - "d390fe1d-09d7-4c26-a840-bf445c72bda6" + "fb4e462a-61ab-42e1-b7dd-27894c8a3959" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"edbc5e62-218c-4b87-b8a0-36798fd33023\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg15413/providers/Microsoft.DataLakeStore/accounts/testadlfs16890\",\r\n \"name\": \"testadlfs16890\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "420" @@ -619,13 +630,13 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:13:51 GMT" + "Mon, 24 Jul 2017 22:50:37 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg16455/providers/Microsoft.DataLakeStore/accounts/testadlfs15527/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg15413/providers/Microsoft.DataLakeStore/accounts/testadlfs16890/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -634,10 +645,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "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" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/edbc5e62-218c-4b87-b8a0-36798fd330230?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "0d30e6bb-873a-4fee-8bc8-05bdf71d52fa" + "9520508e-6d01-419b-a79d-85d125aaa837" ], "X-Content-Type-Options": [ "nosniff" @@ -649,13 +660,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1198" ], "x-ms-correlation-request-id": [ - "ce68d829-4bd6-47d1-a7bc-95e4699c464d" + "421fc67f-be5d-4de3-92bb-05f815488ab8" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181352Z:ce68d829-4bd6-47d1-a7bc-95e4699c464d" + "WESTUS2:20170724T225037Z:421fc67f-be5d-4de3-92bb-05f815488ab8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -664,13 +675,14 @@ "StatusCode": 201 }, { - "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", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/edbc5e62-218c-4b87-b8a0-36798fd330230?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2VkYmM1ZTYyLTIxOGMtNGI4Ny1iOGEwLTM2Nzk4ZmQzMzAyMzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -688,7 +700,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:14:22 GMT" + "Mon, 24 Jul 2017 22:51:08 GMT" ], "Pragma": [ "no-cache" @@ -700,7 +712,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "b31418b1-d551-4aa6-8ead-49a6a3b36b60" + "0d60e049-118c-42c9-ae95-dcafa69922cc" ], "X-Content-Type-Options": [ "nosniff" @@ -712,13 +724,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14991" ], "x-ms-correlation-request-id": [ - "5a96c589-0cda-4738-afea-8cf72cdf1bfb" + "f7df3cb1-c93e-43b3-a823-faa0c8bd2f25" ], "x-ms-routing-request-id": [ - "WESTUS2:20170327T181423Z:5a96c589-0cda-4738-afea-8cf72cdf1bfb" + "WESTUS2:20170724T225108Z:f7df3cb1-c93e-43b3-a823-faa0c8bd2f25" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -727,8 +739,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt1239?op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQxMjM5P29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7445?write=true&op=CREATE&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3NDQ1P3dyaXRlPXRydWUmb3A9Q1JFQVRFJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -739,13 +751,14 @@ "42" ], "x-ms-client-request-id": [ - "2d1f99a7-267e-49b0-a30f-4553dc271e2f" + "4dbca162-8058-4a8c-9a0f-b9ba673a4e7b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "", @@ -760,22 +773,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:14:28 GMT" + "Mon, 24 Jul 2017 22:51:13 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs15527.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt1239?op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs16890.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt7445?write=true&op=CREATE&api-version=2016-11-01" ], "x-ms-request-id": [ - "aec318fd-6d12-46d8-b408-17efe5cd4dbc" + "e45cd340-a7a4-49fd-8fe7-60ed37da40be" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -790,22 +803,23 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt1239?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQxMjM5P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7445?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3NDQ1P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0198db08-5e89-440f-83ce-beb750f9ae73" + "f9ac782c-d36d-4380-ba40-68e3ef407980" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1500936673717,\r\n \"modificationTime\": 1500936673760,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "305" @@ -820,16 +834,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:14:28 GMT" + "Mon, 24 Jul 2017 22:51:13 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "c0c028a2-b8b2-421a-a10c-030696e0dcb0" + "775a0439-611a-469f-b066-77a95babd140" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -846,15 +860,15 @@ ], "Names": { ".ctor": [ - "datalakerg16455", - "testdatalake11017", - "testadlfs15527" + "datalakerg15413", + "testdatalake13252", + "testadlfs16890" ], "CreateFile": [ - "SDKTestFolder01/SDKTestFile01.txt1239" + "SDKTestFolder01/SDKTestFile01.txt7445" ] }, "Variables": { - "SubscriptionId": "53d9063d-87ae-4ea8-be90-3686c3b8669f" + "SubscriptionId": "04319d6d-4a66-4701-bb2f-e7dbbd9ae4db" } } \ No newline at end of file diff --git a/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemTestFile.json b/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemTestFile.json index b43932f36625..5a019e5abd2c 100644 --- a/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemTestFile.json +++ b/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemTestFile.json @@ -1,22 +1,23 @@ { "Entries": [ { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7bd2a539-8d9b-499c-9a38-7df637e4ec0a" + "26fa0f50-4d46-4a22-bd11-b3d11e3f0853" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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" @@ -28,7 +29,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:21:21 GMT" + "Mon, 24 Jul 2017 22:56:55 GMT" ], "Pragma": [ "no-cache" @@ -40,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-request-id": [ - "9585316f-e371-4e3a-b6a3-2f264c8b3138" + "fbe38030-1d12-467f-ac65-b5f0f81dda83" ], "x-ms-correlation-request-id": [ - "9585316f-e371-4e3a-b6a3-2f264c8b3138" + "fbe38030-1d12-467f-ac65-b5f0f81dda83" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T182121Z:9585316f-e371-4e3a-b6a3-2f264c8b3138" + "WESTUS:20170724T225656Z:fbe38030-1d12-467f-ac65-b5f0f81dda83" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -58,22 +59,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "57229503-ad28-469f-b666-3af810ec67cf" + "52773a36-3d1c-4056-9794-6c3d294e1054" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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" @@ -85,7 +87,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:21:21 GMT" + "Mon, 24 Jul 2017 22:56:56 GMT" ], "Pragma": [ "no-cache" @@ -94,16 +96,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14998" ], "x-ms-request-id": [ - "98041e7f-5713-4ac6-89f7-bff0ad4098d4" + "5252cbb9-beab-42ad-b769-c16c31a7faba" ], "x-ms-correlation-request-id": [ - "98041e7f-5713-4ac6-89f7-bff0ad4098d4" + "5252cbb9-beab-42ad-b769-c16c31a7faba" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T182121Z:98041e7f-5713-4ac6-89f7-bff0ad4098d4" + "WESTUS:20170724T225656Z:5252cbb9-beab-42ad-b769-c16c31a7faba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -112,22 +114,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b851766b-d702-484d-876f-7be643f39f84" + "e5274be3-c3de-4c2b-84e4-e35e6045ac43" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/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 \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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 \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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,7 +142,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:21:22 GMT" + "Mon, 24 Jul 2017 22:56:57 GMT" ], "Pragma": [ "no-cache" @@ -151,16 +154,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1198" ], "x-ms-request-id": [ - "05217c53-607a-4bb6-8065-ec1d73bc01ce" + "ab1cc259-1849-4566-8b98-778b95edf741" ], "x-ms-correlation-request-id": [ - "05217c53-607a-4bb6-8065-ec1d73bc01ce" + "ab1cc259-1849-4566-8b98-778b95edf741" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T182122Z:05217c53-607a-4bb6-8065-ec1d73bc01ce" + "WESTUS:20170724T225657Z:ab1cc259-1849-4566-8b98-778b95edf741" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -169,22 +172,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f6e41a82-edd1-48c1-aa0b-451cf46fa4f8" + "05b5766e-d34e-419b-ab86-5a7b5a2d849a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/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 \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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 \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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" @@ -196,7 +200,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:21:22 GMT" + "Mon, 24 Jul 2017 22:56:57 GMT" ], "Pragma": [ "no-cache" @@ -205,16 +209,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14997" ], "x-ms-request-id": [ - "75eca704-aa3e-461d-bb78-ba420bf8ea13" + "c95fe1c6-7239-494e-b0b8-323b62b7882e" ], "x-ms-correlation-request-id": [ - "75eca704-aa3e-461d-bb78-ba420bf8ea13" + "c95fe1c6-7239-494e-b0b8-323b62b7882e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T182122Z:75eca704-aa3e-461d-bb78-ba420bf8ea13" + "WESTUS:20170724T225657Z:c95fe1c6-7239-494e-b0b8-323b62b7882e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -223,22 +227,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11151?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTE1MT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg19672?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTY3Mj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4ce198c8-30e4-4a00-aa51-8efaf969cd36" + "4b10db0b-0695-4864-8b76-6d75fc2be4b3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg11151' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg19672' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -253,7 +258,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:21:22 GMT" + "Mon, 24 Jul 2017 22:56:57 GMT" ], "Pragma": [ "no-cache" @@ -262,16 +267,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14996" ], "x-ms-request-id": [ - "e7bc578d-0082-42a0-941f-8004b3f457ef" + "4930dece-94b5-4be5-b1c2-4f37e71e4af0" ], "x-ms-correlation-request-id": [ - "e7bc578d-0082-42a0-941f-8004b3f457ef" + "4930dece-94b5-4be5-b1c2-4f37e71e4af0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T182122Z:e7bc578d-0082-42a0-941f-8004b3f457ef" + "WESTUS:20170724T225657Z:4930dece-94b5-4be5-b1c2-4f37e71e4af0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -280,22 +285,23 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11151?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTE1MT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg19672?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTY3Mj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7a21daca-4a07-4acd-ab89-07c5107b2ea9" + "78cd2691-1cb7-4cf2-939e-9b266cc8d8b1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg19672\",\r\n \"name\": \"datalakerg19672\",\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 +313,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:21:22 GMT" + "Mon, 24 Jul 2017 22:56:58 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +322,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14995" ], "x-ms-request-id": [ - "53e5fa41-72fd-4180-ba2e-41c28ce29a07" + "3c35720a-ad0f-482a-a9c7-cf0e3319374a" ], "x-ms-correlation-request-id": [ - "53e5fa41-72fd-4180-ba2e-41c28ce29a07" + "3c35720a-ad0f-482a-a9c7-cf0e3319374a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T182122Z:53e5fa41-72fd-4180-ba2e-41c28ce29a07" + "WESTUS:20170724T225658Z:3c35720a-ad0f-482a-a9c7-cf0e3319374a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +340,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11151?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTE1MT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg19672?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTY3Mj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,16 +352,17 @@ "31" ], "x-ms-client-request-id": [ - "769b9013-6455-49ba-8a5f-30da87b4c10a" + "697615eb-3743-4a10-9e27-2a185408249a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg19672\",\r\n \"name\": \"datalakerg19672\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -370,22 +377,22 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:21:22 GMT" + "Mon, 24 Jul 2017 22:56:58 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1197" ], "x-ms-request-id": [ - "b21a5521-e36e-4de5-9f0a-faaa94a00585" + "da757b52-2c5c-49e1-b53c-aeac6d28bf40" ], "x-ms-correlation-request-id": [ - "b21a5521-e36e-4de5-9f0a-faaa94a00585" + "da757b52-2c5c-49e1-b53c-aeac6d28bf40" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T182122Z:b21a5521-e36e-4de5-9f0a-faaa94a00585" + "WESTUS:20170724T225658Z:da757b52-2c5c-49e1-b53c-aeac6d28bf40" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -394,22 +401,23 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11151/providers/Microsoft.DataLakeStore/accounts/testadlfs17806?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTE1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc4MDY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg19672/providers/Microsoft.DataLakeStore/accounts/testadlfs15056?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTUwNTY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c11255ac-beff-48ae-ae45-196a6853d480" + "76ba0431-4c8d-4f5f-bfb0-61a77b7de365" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs15056' under resource group 'datalakerg19672' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "166" @@ -424,7 +432,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:21:22 GMT" + "Mon, 24 Jul 2017 22:56:58 GMT" ], "Pragma": [ "no-cache" @@ -433,13 +441,13 @@ "gateway" ], "x-ms-request-id": [ - "bbe1950c-c6e4-47e0-8b8f-f383fa05cbb9" + "ad5beb73-2673-4439-a329-814e5c6a29ab" ], "x-ms-correlation-request-id": [ - "bbe1950c-c6e4-47e0-8b8f-f383fa05cbb9" + "ad5beb73-2673-4439-a329-814e5c6a29ab" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T182123Z:bbe1950c-c6e4-47e0-8b8f-f383fa05cbb9" + "WESTUS:20170724T225659Z:ad5beb73-2673-4439-a329-814e5c6a29ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -448,16 +456,17 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11151/providers/Microsoft.DataLakeStore/accounts/testadlfs17806?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTE1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc4MDY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg19672/providers/Microsoft.DataLakeStore/accounts/testadlfs15056?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTUwNTY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"testadlfs15056.azuredatalakestore.net\",\r\n \"accountId\": \"783030bc-8d90-4bd3-af96-4d04d42c7f35\",\r\n \"creationTime\": \"2017-07-24T22:57:03.6451808Z\",\r\n \"lastModifiedTime\": \"2017-07-24T22:57:03.6451808Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg19672/providers/Microsoft.DataLakeStore/accounts/testadlfs15056\",\r\n \"name\": \"testadlfs15056\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -472,7 +481,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:21:54 GMT" + "Mon, 24 Jul 2017 22:57:31 GMT" ], "Pragma": [ "no-cache" @@ -484,7 +493,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "92809765-ac97-4f62-a175-ee7714017480" + "658463b7-8b44-4e20-a215-dd2287ea977a" ], "X-Content-Type-Options": [ "nosniff" @@ -496,13 +505,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14994" ], "x-ms-correlation-request-id": [ - "e009d333-a771-4456-828e-096380eb3444" + "2543b57b-facc-45ac-bf72-2edacfd73210" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T182155Z:e009d333-a771-4456-828e-096380eb3444" + "WESTUS:20170724T225732Z:2543b57b-facc-45ac-bf72-2edacfd73210" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -511,22 +520,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11151/providers/Microsoft.DataLakeStore/accounts/testadlfs17806?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTE1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc4MDY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg19672/providers/Microsoft.DataLakeStore/accounts/testadlfs15056?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTUwNTY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3cac7c68-e357-4f97-8201-44b0c0947f37" + "546476c9-e6fe-4b06-995c-b34b47d945b6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"testadlfs15056.azuredatalakestore.net\",\r\n \"accountId\": \"783030bc-8d90-4bd3-af96-4d04d42c7f35\",\r\n \"creationTime\": \"2017-07-24T22:57:03.6451808Z\",\r\n \"lastModifiedTime\": \"2017-07-24T22:57:03.6451808Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg19672/providers/Microsoft.DataLakeStore/accounts/testadlfs15056\",\r\n \"name\": \"testadlfs15056\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -541,7 +551,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:21:56 GMT" + "Mon, 24 Jul 2017 22:57:33 GMT" ], "Pragma": [ "no-cache" @@ -553,7 +563,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "bbb7af78-8aeb-4979-8b9d-9532bb906ccd" + "7e6a6495-3b58-4170-9280-42be3d4184bd" ], "X-Content-Type-Options": [ "nosniff" @@ -565,13 +575,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14991" ], "x-ms-correlation-request-id": [ - "45347af8-6ba6-4a6c-89f4-238995f5ad3e" + "36fe65af-ef22-4782-bcd1-5d74311d2165" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T182156Z:45347af8-6ba6-4a6c-89f4-238995f5ad3e" + "WESTUS:20170724T225733Z:36fe65af-ef22-4782-bcd1-5d74311d2165" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -580,8 +590,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11151/providers/Microsoft.DataLakeStore/accounts/testadlfs17806?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTE1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc4MDY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg19672/providers/Microsoft.DataLakeStore/accounts/testadlfs15056?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTUwNTY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -592,16 +602,17 @@ "31" ], "x-ms-client-request-id": [ - "4acb3e48-8a69-4d34-892f-0b9854403595" + "1a1377fb-7614-40af-9e29-66912a70f039" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"783030bc-8d90-4bd3-af96-4d04d42c7f35\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg19672/providers/Microsoft.DataLakeStore/accounts/testadlfs15056\",\r\n \"name\": \"testadlfs15056\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "420" @@ -619,13 +630,13 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:21:24 GMT" + "Mon, 24 Jul 2017 22:57:01 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11151/providers/Microsoft.DataLakeStore/accounts/testadlfs17806/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg19672/providers/Microsoft.DataLakeStore/accounts/testadlfs15056/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -634,10 +645,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "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" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/783030bc-8d90-4bd3-af96-4d04d42c7f350?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "685e148e-6639-4bb0-b1b4-2afa5808de33" + "7cfa8c46-62dc-4176-8331-e52ab387ce3f" ], "X-Content-Type-Options": [ "nosniff" @@ -649,13 +660,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-correlation-request-id": [ - "a91da9d1-b197-462e-9b85-d578e24030f4" + "ec83ba6f-02c0-4e75-a4dc-565776e7b1ce" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T182124Z:a91da9d1-b197-462e-9b85-d578e24030f4" + "WESTUS:20170724T225701Z:ec83ba6f-02c0-4e75-a4dc-565776e7b1ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -664,13 +675,14 @@ "StatusCode": 201 }, { - "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", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/783030bc-8d90-4bd3-af96-4d04d42c7f350?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzc4MzAzMGJjLThkOTAtNGJkMy1hZjk2LTRkMDRkNDJjN2YzNTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -688,7 +700,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:21:54 GMT" + "Mon, 24 Jul 2017 22:57:32 GMT" ], "Pragma": [ "no-cache" @@ -700,7 +712,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "5a8d5da9-cd14-46fb-8256-74d680c4f8bb" + "2126f1aa-cf14-4e9f-98f6-35b51fd37b6e" ], "X-Content-Type-Options": [ "nosniff" @@ -712,13 +724,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14992" ], "x-ms-correlation-request-id": [ - "b67fc1bb-9ae1-4cdf-852a-83654388a945" + "881dbbd0-086c-46ad-b30f-d8b865ba1d9b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T182154Z:b67fc1bb-9ae1-4cdf-852a-83654388a945" + "WESTUS:20170724T225732Z:881dbbd0-086c-46ad-b30f-d8b865ba1d9b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,16 +745,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ef09eedf-ec9a-424d-826b-5cfa4ab3d6de" + "53b25899-9b31-4613-b9b9-1bb40546e391" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /nonexistentfile [61f6d7a3-dfc0-43be-a9c2-ecf0262587fe][2017-07-24T15:57:36.4139305-07:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "236" @@ -757,16 +770,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:22:01 GMT" + "Mon, 24 Jul 2017 22:57:35 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "9c20fd20-8dd3-46fa-9d9c-285e54c7c9c0" + "61f6d7a3-dfc0-43be-a9c2-ecf0262587fe" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x8309000A" @@ -781,8 +794,8 @@ "StatusCode": 404 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt4722?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ0NzIyP3N5bmNGbGFnPURBVEEmb3A9Q1JFQVRFJndyaXRlPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt5716?syncFlag=DATA&write=true&op=CREATE&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ1NzE2P3N5bmNGbGFnPURBVEEmd3JpdGU9dHJ1ZSZvcD1DUkVBVEUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { @@ -793,13 +806,14 @@ "0" ], "x-ms-client-request-id": [ - "bc11037e-68c7-454a-811d-3348a73744ca" + "442a1917-f5cc-4448-b532-f25c69e6f634" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, "ResponseBody": "", @@ -814,22 +828,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:22:02 GMT" + "Mon, 24 Jul 2017 22:57:35 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs17806.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt4722?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs15056.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt5716?syncFlag=DATA&write=true&op=CREATE&api-version=2016-11-01" ], "x-ms-request-id": [ - "22127853-91fb-46da-9441-574bbfc1c5e0" + "4247de46-38d3-4e20-b130-391709326aa9" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -844,22 +858,23 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt4722?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ0NzIyP29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt5716?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ1NzE2P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "089d0978-9d51-47b1-8ef8-06a9a9872410" + "2a492a78-b742-46f7-8d94-0924df7c1363" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1500937056519,\r\n \"modificationTime\": 1500937056519,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"group\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "304" @@ -874,16 +889,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Mon, 27 Mar 2017 18:22:02 GMT" + "Mon, 24 Jul 2017 22:57:36 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "a70ae079-42c4-4a59-b849-59415a4e4a4a" + "cde23140-e27b-4334-821b-5d0f6a5fe9cb" ], "x-ms-webhdfs-version": [ - "16.12.19.00" + "17.04.22.00" ], "Status": [ "0x0" @@ -900,15 +915,15 @@ ], "Names": { ".ctor": [ - "datalakerg11151", - "testdatalake16385", - "testadlfs17806" + "datalakerg19672", + "testdatalake15472", + "testadlfs15056" ], "CreateFile": [ - "SDKTestFolder01/SDKTestFile01.txt4722" + "SDKTestFolder01/SDKTestFile01.txt5716" ] }, "Variables": { - "SubscriptionId": "53d9063d-87ae-4ea8-be90-3686c3b8669f" + "SubscriptionId": "04319d6d-4a66-4701-bb2f-e7dbbd9ae4db" } } \ No newline at end of file diff --git a/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemValidateDefaultTimeout.json b/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemValidateDefaultTimeout.json index 515a9c350732..9a9430d49951 100644 --- a/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemValidateDefaultTimeout.json +++ b/src/SDKs/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemValidateDefaultTimeout.json @@ -1,22 +1,23 @@ { "Entries": [ { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c5c3b415-1c84-4dbb-9df5-3820634900ad" + "06b99cb5-e9e9-4a57-a389-a383b9d15ebf" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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" @@ -28,7 +29,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:22:13 GMT" + "Mon, 24 Jul 2017 22:57:42 GMT" ], "Pragma": [ "no-cache" @@ -40,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1195" ], "x-ms-request-id": [ - "609769d4-7859-4eca-8fe4-a4aef74552c3" + "04ef3197-44d6-4054-9b3b-3bf66e4305de" ], "x-ms-correlation-request-id": [ - "609769d4-7859-4eca-8fe4-a4aef74552c3" + "04ef3197-44d6-4054-9b3b-3bf66e4305de" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T182213Z:609769d4-7859-4eca-8fe4-a4aef74552c3" + "WESTUS2:20170724T225743Z:04ef3197-44d6-4054-9b3b-3bf66e4305de" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -58,22 +59,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2e599455-abbc-48bd-bed4-10ba5b6c3cf2" + "4792827b-e75b-4b7b-bb80-023fdf01c7f4" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-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" @@ -85,7 +87,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:22:13 GMT" + "Mon, 24 Jul 2017 22:57:42 GMT" ], "Pragma": [ "no-cache" @@ -94,16 +96,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14976" ], "x-ms-request-id": [ - "34e1b6cf-1510-42c8-88a9-5ce5c8578637" + "8fd8471e-26f5-480b-81ff-ca2d0a85fee4" ], "x-ms-correlation-request-id": [ - "34e1b6cf-1510-42c8-88a9-5ce5c8578637" + "8fd8471e-26f5-480b-81ff-ca2d0a85fee4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T182213Z:34e1b6cf-1510-42c8-88a9-5ce5c8578637" + "WESTUS2:20170724T225743Z:8fd8471e-26f5-480b-81ff-ca2d0a85fee4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -112,22 +114,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9a687a48-ba0f-47a8-a350-d1d03aac7ea4" + "9698a4cb-eaa0-490e-afb6-de7f916d2820" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/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 \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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 \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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,7 +142,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:22:14 GMT" + "Mon, 24 Jul 2017 22:57:43 GMT" ], "Pragma": [ "no-cache" @@ -151,16 +154,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1194" ], "x-ms-request-id": [ - "8ee63ecd-1fe3-49a8-a6e7-54259d170684" + "42a4a30a-83c2-4104-b6be-133e2246925c" ], "x-ms-correlation-request-id": [ - "8ee63ecd-1fe3-49a8-a6e7-54259d170684" + "42a4a30a-83c2-4104-b6be-133e2246925c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T182214Z:8ee63ecd-1fe3-49a8-a6e7-54259d170684" + "WESTUS2:20170724T225744Z:42a4a30a-83c2-4104-b6be-133e2246925c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -169,22 +172,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f7cb5eca-9160-4f77-b5c6-c32bffebe64f" + "0a0a1b93-6c1c-47df-8b3d-cef9911fa0d8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/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 \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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 \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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" @@ -196,7 +200,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:22:14 GMT" + "Mon, 24 Jul 2017 22:57:43 GMT" ], "Pragma": [ "no-cache" @@ -205,16 +209,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14975" ], "x-ms-request-id": [ - "73900d57-4626-4f04-90b2-8818fb387268" + "c743b0fc-8bcc-452c-91f9-4f254fbb1394" ], "x-ms-correlation-request-id": [ - "73900d57-4626-4f04-90b2-8818fb387268" + "c743b0fc-8bcc-452c-91f9-4f254fbb1394" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T182214Z:73900d57-4626-4f04-90b2-8818fb387268" + "WESTUS2:20170724T225744Z:c743b0fc-8bcc-452c-91f9-4f254fbb1394" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -223,25 +227,26 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1138?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTM4P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg13555?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzU1NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bd284a41-aacd-420c-887b-15753f6e383e" + "abf11789-dd9f-4ca6-9d3d-0516147e1d47" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg1138' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg13555' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "106" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -253,7 +258,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:22:14 GMT" + "Mon, 24 Jul 2017 22:57:43 GMT" ], "Pragma": [ "no-cache" @@ -262,16 +267,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14974" ], "x-ms-request-id": [ - "178b538b-ada8-46f9-a5c0-4e0c8cae93ca" + "8a302519-08fb-4db5-a49f-02c0b1c56420" ], "x-ms-correlation-request-id": [ - "178b538b-ada8-46f9-a5c0-4e0c8cae93ca" + "8a302519-08fb-4db5-a49f-02c0b1c56420" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T182214Z:178b538b-ada8-46f9-a5c0-4e0c8cae93ca" + "WESTUS2:20170724T225744Z:8a302519-08fb-4db5-a49f-02c0b1c56420" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -280,22 +285,23 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1138?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTM4P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg13555?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzU1NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1e75c586-cfd2-410f-9a06-2639651df46e" + "d7420f5f-1578-4169-866d-742d9cf65fe9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg13555\",\r\n \"name\": \"datalakerg13555\",\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 +313,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:22:15 GMT" + "Mon, 24 Jul 2017 22:57:45 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +322,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14973" ], "x-ms-request-id": [ - "9fa4f4ab-9bd5-470d-9a52-2dceaeb523a9" + "0c5ff6e9-1b19-40dc-910a-9a7ec1ce2bd0" ], "x-ms-correlation-request-id": [ - "9fa4f4ab-9bd5-470d-9a52-2dceaeb523a9" + "0c5ff6e9-1b19-40dc-910a-9a7ec1ce2bd0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T182215Z:9fa4f4ab-9bd5-470d-9a52-2dceaeb523a9" + "WESTUS2:20170724T225746Z:0c5ff6e9-1b19-40dc-910a-9a7ec1ce2bd0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +340,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1138?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTM4P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg13555?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzU1NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,19 +352,20 @@ "31" ], "x-ms-client-request-id": [ - "9ccae088-4fc1-428c-a6de-edc390378ad1" + "c3e78400-2d7f-4d85-97e9-a926b59f8431" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg13555\",\r\n \"name\": \"datalakerg13555\",\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" @@ -370,22 +377,22 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:22:15 GMT" + "Mon, 24 Jul 2017 22:57:45 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1193" ], "x-ms-request-id": [ - "2ba887ca-0c3d-402a-bf44-5cf3d407b7a1" + "26c36511-3b7f-4705-a82b-416ff2b4b566" ], "x-ms-correlation-request-id": [ - "2ba887ca-0c3d-402a-bf44-5cf3d407b7a1" + "26c36511-3b7f-4705-a82b-416ff2b4b566" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T182215Z:2ba887ca-0c3d-402a-bf44-5cf3d407b7a1" + "WESTUS2:20170724T225745Z:26c36511-3b7f-4705-a82b-416ff2b4b566" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -394,25 +401,26 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1138/providers/Microsoft.DataLakeStore/accounts/testadlfs14684?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxNDY4ND9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg13555/providers/Microsoft.DataLakeStore/accounts/testadlfs12906?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzU1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTI5MDY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "51ccbd44-fbae-4a2e-be52-82bcf93663ca" + "03db5570-5ddc-4dd2-9f99-e436b0f8311e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs12906' under resource group 'datalakerg13555' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "165" + "166" ], "Content-Type": [ "application/json; charset=utf-8" @@ -424,7 +432,7 @@ "no-cache" ], "Date": [ - "Mon, 27 Mar 2017 18:22:15 GMT" + "Mon, 24 Jul 2017 22:57:45 GMT" ], "Pragma": [ "no-cache" @@ -433,13 +441,13 @@ "gateway" ], "x-ms-request-id": [ - "77ce08dd-5f54-41d4-aef7-339e0a2df6ff" + "577641f1-9bcc-4661-8ba9-7fc7f8d45f40" ], "x-ms-correlation-request-id": [ - "77ce08dd-5f54-41d4-aef7-339e0a2df6ff" + "577641f1-9bcc-4661-8ba9-7fc7f8d45f40" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T182216Z:77ce08dd-5f54-41d4-aef7-339e0a2df6ff" + "WESTUS2:20170724T225746Z:577641f1-9bcc-4661-8ba9-7fc7f8d45f40" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -448,16 +456,17 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1138/providers/Microsoft.DataLakeStore/accounts/testadlfs14684?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxNDY4ND9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg13555/providers/Microsoft.DataLakeStore/accounts/testadlfs12906?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzU1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTI5MDY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"testadlfs12906.azuredatalakestore.net\",\r\n \"accountId\": \"07eb3ce8-bf1d-4467-a52b-e1728fefaba9\",\r\n \"creationTime\": \"2017-07-24T22:57:49.7763571Z\",\r\n \"lastModifiedTime\": \"2017-07-24T22:57:49.7763571Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg13555/providers/Microsoft.DataLakeStore/accounts/testadlfs12906\",\r\n \"name\": \"testadlfs12906\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -472,7 +481,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:22:47 GMT" + "Mon, 24 Jul 2017 22:58:19 GMT" ], "Pragma": [ "no-cache" @@ -484,7 +493,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "92860acc-1d2d-4ad5-b382-2d93f6b02b81" + "6c9427bd-6fe9-45a2-8d5c-1bee8536c1c6" ], "X-Content-Type-Options": [ "nosniff" @@ -496,13 +505,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14980" ], "x-ms-correlation-request-id": [ - "46e77fce-ce8f-4b22-82af-d370d046a48f" + "668fbc69-a03b-4cc4-a5d3-960b282e0aad" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T182248Z:46e77fce-ce8f-4b22-82af-d370d046a48f" + "WESTUS2:20170724T225819Z:668fbc69-a03b-4cc4-a5d3-960b282e0aad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -511,22 +520,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1138/providers/Microsoft.DataLakeStore/accounts/testadlfs14684?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxNDY4ND9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg13555/providers/Microsoft.DataLakeStore/accounts/testadlfs12906?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzU1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTI5MDY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f99c14c4-9811-4a8d-96f3-dc42674b2c7a" + "1d84378a-cb6a-439b-bc86-22762bb975ac" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\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}", + "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\": \"testadlfs12906.azuredatalakestore.net\",\r\n \"accountId\": \"07eb3ce8-bf1d-4467-a52b-e1728fefaba9\",\r\n \"creationTime\": \"2017-07-24T22:57:49.7763571Z\",\r\n \"lastModifiedTime\": \"2017-07-24T22:57:49.7763571Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg13555/providers/Microsoft.DataLakeStore/accounts/testadlfs12906\",\r\n \"name\": \"testadlfs12906\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -541,7 +551,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:22:47 GMT" + "Mon, 24 Jul 2017 22:58:20 GMT" ], "Pragma": [ "no-cache" @@ -553,7 +563,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "470a3e11-4ecb-4590-b8d2-9cf607797396" + "91fa552c-5467-4e3f-ad24-0d2eef2bc937" ], "X-Content-Type-Options": [ "nosniff" @@ -565,13 +575,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14990" ], "x-ms-correlation-request-id": [ - "3df6d8b9-1b09-4a89-8d86-08144a53f677" + "9b4c6e77-658c-48e6-b262-40dd5e654b9b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T182248Z:3df6d8b9-1b09-4a89-8d86-08144a53f677" + "WESTUS2:20170724T225820Z:9b4c6e77-658c-48e6-b262-40dd5e654b9b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -580,8 +590,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1138/providers/Microsoft.DataLakeStore/accounts/testadlfs14684?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxNDY4ND9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg13555/providers/Microsoft.DataLakeStore/accounts/testadlfs12906?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzU1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTI5MDY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -592,19 +602,20 @@ "31" ], "x-ms-client-request-id": [ - "43131419-2a7a-49de-a984-82dfad8abb72" + "69175d6b-023c-45e3-b102-e9e237557368" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, - "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}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"07eb3ce8-bf1d-4467-a52b-e1728fefaba9\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/datalakerg13555/providers/Microsoft.DataLakeStore/accounts/testadlfs12906\",\r\n \"name\": \"testadlfs12906\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "419" + "420" ], "Content-Type": [ "application/json" @@ -619,13 +630,13 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:22:16 GMT" + "Mon, 24 Jul 2017 22:57:47 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1138/providers/Microsoft.DataLakeStore/accounts/testadlfs14684/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/datalakerg13555/providers/Microsoft.DataLakeStore/accounts/testadlfs12906/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -634,10 +645,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "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" + "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/07eb3ce8-bf1d-4467-a52b-e1728fefaba90?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "fae42f11-cd55-4c3d-ab99-2c519f594be2" + "436bd835-6571-499e-84ab-756c7490084c" ], "X-Content-Type-Options": [ "nosniff" @@ -649,13 +660,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1194" ], "x-ms-correlation-request-id": [ - "902929eb-7bab-4b40-a0fb-ecc533fdc080" + "ee29ce26-fdbf-4c0f-a53c-0551a6a3d359" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T182217Z:902929eb-7bab-4b40-a0fb-ecc533fdc080" + "WESTUS2:20170724T225748Z:ee29ce26-fdbf-4c0f-a53c-0551a6a3d359" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -664,13 +675,14 @@ "StatusCode": 201 }, { - "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", + "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/07eb3ce8-bf1d-4467-a52b-e1728fefaba90?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzA3ZWIzY2U4LWJmMWQtNDQ2Ny1hNTJiLWUxNzI4ZmVmYWJhOTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.1.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -688,7 +700,7 @@ "close" ], "Date": [ - "Mon, 27 Mar 2017 18:22:47 GMT" + "Mon, 24 Jul 2017 22:58:18 GMT" ], "Pragma": [ "no-cache" @@ -700,7 +712,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "26abcfe2-f295-41bc-8766-d06eb9cb801e" + "034a5553-b98f-4f2f-8f98-5a7845d5aa39" ], "X-Content-Type-Options": [ "nosniff" @@ -712,13 +724,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14990" ], "x-ms-correlation-request-id": [ - "a1539817-b34b-4fb2-ba02-7c49e508b8c4" + "10f39f05-42d7-4f31-87cb-05a860327812" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170327T182247Z:a1539817-b34b-4fb2-ba02-7c49e508b8c4" + "WESTUS2:20170724T225819Z:10f39f05-42d7-4f31-87cb-05a860327812" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -729,12 +741,12 @@ ], "Names": { ".ctor": [ - "datalakerg1138", - "testdatalake18796", - "testadlfs14684" + "datalakerg13555", + "testdatalake16848", + "testadlfs12906" ] }, "Variables": { - "SubscriptionId": "53d9063d-87ae-4ea8-be90-3686c3b8669f" + "SubscriptionId": "04319d6d-4a66-4701-bb2f-e7dbbd9ae4db" } } \ No newline at end of file diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Customizations/DataLakeStoreCustomizationHelper.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Customizations/DataLakeStoreCustomizationHelper.cs index 1a8ae3958fb4..a4b142d8efa8 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Customizations/DataLakeStoreCustomizationHelper.cs +++ b/src/SDKs/DataLake.Store/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.2.1"; + internal const string PackageVersion = "2.3.0-preview"; internal const string DefaultAdlsFileSystemDnsSuffix = "azuredatalakestore.net"; diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/AccountOperations.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/AccountOperations.cs index 13ce892e1502..4b00c3c4c112 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/AccountOperations.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/AccountOperations.cs @@ -2,7 +2,7 @@ // Licensed 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 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -543,7 +543,7 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -690,7 +690,7 @@ internal AccountOperations(DataLakeStoreAccountManagementClient 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")) @@ -703,7 +703,7 @@ internal AccountOperations(DataLakeStoreAccountManagementClient 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) { @@ -759,7 +759,7 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListWithHttpMessagesAsync(ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListWithHttpMessagesAsync(ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.ApiVersion == null) { @@ -900,7 +900,7 @@ internal AccountOperations(DataLakeStoreAccountManagementClient 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")) @@ -913,7 +913,7 @@ internal AccountOperations(DataLakeStoreAccountManagementClient 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) { @@ -1084,7 +1084,7 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 201 && (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 @@ -1127,7 +1127,7 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } // Deserialize Response - if ((int)_statusCode == 201) + if ((int)_statusCode == 200) { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try @@ -1145,7 +1145,7 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) } } // Deserialize Response - if ((int)_statusCode == 200) + if ((int)_statusCode == 201) { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try @@ -1602,7 +1602,7 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { @@ -1716,7 +1716,7 @@ internal AccountOperations(DataLakeStoreAccountManagementClient 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")) @@ -1729,7 +1729,7 @@ internal AccountOperations(DataLakeStoreAccountManagementClient 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) { @@ -1776,7 +1776,7 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { @@ -1890,7 +1890,7 @@ internal AccountOperations(DataLakeStoreAccountManagementClient 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")) @@ -1903,7 +1903,7 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/AccountOperationsExtensions.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/AccountOperationsExtensions.cs index 3be931669746..6d8ad2c3320e 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/AccountOperationsExtensions.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/AccountOperationsExtensions.cs @@ -2,7 +2,7 @@ // Licensed 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 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -266,7 +266,7 @@ public static void EnableKeyVault(this IAccountOperations operations, string res /// resources included with the resources in the response, e.g. /// Categories?$count=true. Optional. /// - public static IPage ListByResourceGroup(this IAccountOperations operations, string resourceGroupName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?)) + public static IPage ListByResourceGroup(this IAccountOperations operations, string resourceGroupName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?)) { return operations.ListByResourceGroupAsync(resourceGroupName, odataQuery, select, count).GetAwaiter().GetResult(); } @@ -297,7 +297,7 @@ public static void EnableKeyVault(this IAccountOperations operations, string res /// /// The cancellation token. /// - public static async Task> ListByResourceGroupAsync(this IAccountOperations operations, string resourceGroupName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByResourceGroupAsync(this IAccountOperations operations, string resourceGroupName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ListByResourceGroupWithHttpMessagesAsync(resourceGroupName, odataQuery, select, count, null, cancellationToken).ConfigureAwait(false)) { @@ -324,7 +324,7 @@ public static void EnableKeyVault(this IAccountOperations operations, string res /// resources included with the resources in the response, e.g. /// Categories?$count=true. Optional. /// - public static IPage List(this IAccountOperations operations, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?)) + public static IPage List(this IAccountOperations operations, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?)) { return operations.ListAsync(odataQuery, select, count).GetAwaiter().GetResult(); } @@ -351,7 +351,7 @@ public static void EnableKeyVault(this IAccountOperations operations, string res /// /// The cancellation token. /// - public static async Task> ListAsync(this IAccountOperations operations, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListAsync(this IAccountOperations operations, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ListWithHttpMessagesAsync(odataQuery, select, count, null, cancellationToken).ConfigureAwait(false)) { @@ -504,7 +504,7 @@ public static void BeginDelete(this IAccountOperations operations, string resour /// /// The NextLink from the previous successful call to List operation. /// - public static IPage ListByResourceGroupNext(this IAccountOperations operations, string nextPageLink) + public static IPage ListByResourceGroupNext(this IAccountOperations operations, string nextPageLink) { return operations.ListByResourceGroupNextAsync(nextPageLink).GetAwaiter().GetResult(); } @@ -522,7 +522,7 @@ public static IPage ListByResourceGroupNext(this IAccountO /// /// The cancellation token. /// - public static async Task> ListByResourceGroupNextAsync(this IAccountOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByResourceGroupNextAsync(this IAccountOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ListByResourceGroupNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) { @@ -540,7 +540,7 @@ public static IPage ListByResourceGroupNext(this IAccountO /// /// The NextLink from the previous successful call to List operation. /// - public static IPage ListNext(this IAccountOperations operations, string nextPageLink) + public static IPage ListNext(this IAccountOperations operations, string nextPageLink) { return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); } @@ -558,7 +558,7 @@ public static IPage ListNext(this IAccountOperations opera /// /// The cancellation token. /// - public static async Task> ListNextAsync(this IAccountOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListNextAsync(this IAccountOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) { diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/DataLakeStoreAccountManagementClient.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/DataLakeStoreAccountManagementClient.cs index be259547b6ea..597ac2da8381 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/DataLakeStoreAccountManagementClient.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/DataLakeStoreAccountManagementClient.cs @@ -2,7 +2,7 @@ // Licensed 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 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/DataLakeStoreFileSystemManagementClient.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/DataLakeStoreFileSystemManagementClient.cs index 63699708626b..6d8181a3f61b 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/DataLakeStoreFileSystemManagementClient.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/DataLakeStoreFileSystemManagementClient.cs @@ -2,7 +2,7 @@ // Licensed 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 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/FileSystemOperations.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/FileSystemOperations.cs index 124b918b764b..9ac422ca22c0 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/FileSystemOperations.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/FileSystemOperations.cs @@ -2,7 +2,7 @@ // Licensed 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 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -53,40 +53,29 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) public DataLakeStoreFileSystemManagementClient Client { get; private set; } /// - /// Appends to the specified file, optionally first creating the file if it - /// does not yet exist. This method supports multiple concurrent appends to the - /// file. NOTE: The target must not contain data added by Create or normal - /// (serial) Append. 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. - /// ConcurrentAppend does not guarantee order and can result in duplicated data - /// landing in the target file. + /// Sets or removes the expiration time on the specified file. This operation + /// can only be executed against files. Folders are not supported. /// /// /// The Azure Data Lake Store account to execute filesystem operations on. /// - /// - /// The Data Lake Store path (starting with '/') of the file to which to append - /// using concurrent append. - /// - /// - /// The file contents to include when appending to the file. + /// + /// The Data Lake Store path (starting with '/') of the file on which to set or + /// remove the expiration time. /// - /// - /// Indicates the concurrent append call should create the file if it doesn't - /// exist or just open the existing file for append. Possible values include: - /// 'autocreate' + /// + /// Indicates the type of expiration to use for the file: 1. NeverExpire: + /// ExpireTime is ignored. 2. RelativeToNow: ExpireTime is an integer in + /// milliseconds representing the expiration date relative to when file + /// expiration is updated. 3. RelativeToCreationDate: ExpireTime is an integer + /// in milliseconds representing the expiration date relative to file creation. + /// 4. Absolute: ExpireTime is an integer in milliseconds, as a Unix timestamp + /// relative to 1/1/1970 00:00:00. Possible values include: 'NeverExpire', + /// 'RelativeToNow', 'RelativeToCreationDate', 'Absolute' /// - /// - /// Optionally indicates what to do after completion of the concurrent append. - /// DATA indicates that more data will be sent immediately by the client, the - /// file handle should remain open/locked, and file metadata (including file - /// length, last modified time) should NOT get updated. METADATA indicates that - /// more data will be sent immediately by the client, the file handle should - /// remain open/locked, and file metadata should get updated. CLOSE indicates - /// that the client is done sending data, the file handle should be - /// closed/unlocked, and file metadata should get updated. Possible values - /// include: 'DATA', 'METADATA', 'CLOSE' + /// + /// The time that the file will expire, corresponding to the ExpiryOption that + /// was set. /// /// /// Headers that will be added to request. @@ -106,7 +95,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task ConcurrentAppendWithHttpMessagesAsync(string accountName, string filePath, Stream streamContents, AppendModeType? appendMode = default(AppendModeType?), SyncFlag? syncFlag = default(SyncFlag?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task SetFileExpiryWithHttpMessagesAsync(string accountName, string path, ExpiryOptionType expiryOption, long? expireTime = default(long?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (accountName == null) { @@ -116,20 +105,15 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.AdlsFileSystemDnsSuffix"); } - if (filePath == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "filePath"); - } - if (streamContents == null) + if (path == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "streamContents"); + throw new ValidationException(ValidationRules.CannotBeNull, "path"); } if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - string op = "CONCURRENTAPPEND"; - string transferEncoding = "chunked"; + string op = "SETEXPIRY"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -138,34 +122,29 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("accountName", accountName); - tracingParameters.Add("filePath", filePath); - tracingParameters.Add("streamContents", streamContents); - tracingParameters.Add("appendMode", appendMode); + tracingParameters.Add("path", path); + tracingParameters.Add("expiryOption", expiryOption); + tracingParameters.Add("expireTime", expireTime); tracingParameters.Add("op", op); - tracingParameters.Add("transferEncoding", transferEncoding); - tracingParameters.Add("syncFlag", syncFlag); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ConcurrentAppend", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "SetFileExpiry", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "WebHdfsExt/{filePath}"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "WebHdfsExt/{path}"; _url = _url.Replace("{accountName}", accountName); _url = _url.Replace("{adlsFileSystemDnsSuffix}", Client.AdlsFileSystemDnsSuffix); - _url = _url.Replace("{filePath}", System.Uri.EscapeDataString(filePath)); + _url = _url.Replace("{path}", System.Uri.EscapeDataString(path)); List _queryParameters = new List(); - if (appendMode != null) + _queryParameters.Add(string.Format("expiryOption={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(expiryOption, Client.SerializationSettings).Trim('"')))); + if (expireTime != null) { - _queryParameters.Add(string.Format("appendMode={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(appendMode, Client.SerializationSettings).Trim('"')))); + _queryParameters.Add(string.Format("expireTime={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(expireTime, Client.SerializationSettings).Trim('"')))); } if (op != null) { _queryParameters.Add(string.Format("op={0}", System.Uri.EscapeDataString(op))); } - if (syncFlag != null) - { - _queryParameters.Add(string.Format("syncFlag={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(syncFlag, Client.SerializationSettings).Trim('"')))); - } if (Client.ApiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); @@ -177,21 +156,13 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("POST"); + _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 (transferEncoding != null) - { - if (_httpRequest.Headers.Contains("Transfer-Encoding")) - { - _httpRequest.Headers.Remove("Transfer-Encoding"); - } - _httpRequest.Headers.TryAddWithoutValidation("Transfer-Encoding", transferEncoding); - } if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) @@ -216,15 +187,6 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) // Serialize Request string _requestContent = null; - if(streamContents == null) - { - throw new System.ArgumentNullException("streamContents"); - } - if (streamContents != null && streamContents != Stream.Null) - { - _httpRequest.Content = new StreamContent(streamContents); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/octet-stream"); - } // Set Credentials if (Client.Credentials != null) { @@ -290,29 +252,40 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } /// - /// Sets or removes the expiration time on the specified file. This operation - /// can only be executed against files. Folders are not supported. + /// Appends to the specified file, optionally first creating the file if it + /// does not yet exist. This method supports multiple concurrent appends to the + /// file. NOTE: The target must not contain data added by Create or normal + /// (serial) Append. 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. + /// ConcurrentAppend does not guarantee order and can result in duplicated data + /// landing in the target file. /// /// /// The Azure Data Lake Store account to execute filesystem operations on. /// - /// - /// The Data Lake Store path (starting with '/') of the file on which to set or - /// remove the expiration time. + /// + /// The Data Lake Store path (starting with '/') of the file to which to append + /// using concurrent append. /// - /// - /// Indicates the type of expiration to use for the file: 1. NeverExpire: - /// ExpireTime is ignored. 2. RelativeToNow: ExpireTime is an integer in - /// milliseconds representing the expiration date relative to when file - /// expiration is updated. 3. RelativeToCreationDate: ExpireTime is an integer - /// in milliseconds representing the expiration date relative to file creation. - /// 4. Absolute: ExpireTime is an integer in milliseconds, as a Unix timestamp - /// relative to 1/1/1970 00:00:00. Possible values include: 'NeverExpire', - /// 'RelativeToNow', 'RelativeToCreationDate', 'Absolute' + /// + /// The file contents to include when appending to the file. /// - /// - /// The time that the file will expire, corresponding to the ExpiryOption that - /// was set. + /// + /// Indicates the concurrent append call should create the file if it doesn't + /// exist or just open the existing file for append. Possible values include: + /// 'autocreate' + /// + /// + /// Optionally indicates what to do after completion of the concurrent append. + /// DATA indicates that more data will be sent immediately by the client, the + /// file handle should remain open/locked, and file metadata (including file + /// length, last modified time) should NOT get updated. METADATA indicates that + /// more data will be sent immediately by the client, the file handle should + /// remain open/locked, and file metadata should get updated. CLOSE indicates + /// that the client is done sending data, the file handle should be + /// closed/unlocked, and file metadata should get updated. Possible values + /// include: 'DATA', 'METADATA', 'CLOSE' /// /// /// Headers that will be added to request. @@ -332,7 +305,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task SetFileExpiryWithHttpMessagesAsync(string accountName, string filePath, ExpiryOptionType expiryOption, long? expireTime = default(long?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task ConcurrentAppendWithHttpMessagesAsync(string accountName, string path, Stream streamContents, AppendModeType? appendMode = default(AppendModeType?), SyncFlag? syncFlag = default(SyncFlag?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (accountName == null) { @@ -342,15 +315,20 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.AdlsFileSystemDnsSuffix"); } - if (filePath == null) + if (path == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "filePath"); + throw new ValidationException(ValidationRules.CannotBeNull, "path"); + } + if (streamContents == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "streamContents"); } if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - string op = "SETEXPIRY"; + string op = "CONCURRENTAPPEND"; + string transferEncoding = "chunked"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -359,29 +337,34 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("accountName", accountName); - tracingParameters.Add("filePath", filePath); - tracingParameters.Add("expiryOption", expiryOption); - tracingParameters.Add("expireTime", expireTime); + tracingParameters.Add("path", path); + tracingParameters.Add("streamContents", streamContents); + tracingParameters.Add("appendMode", appendMode); tracingParameters.Add("op", op); + tracingParameters.Add("transferEncoding", transferEncoding); + tracingParameters.Add("syncFlag", syncFlag); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "SetFileExpiry", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ConcurrentAppend", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "WebHdfsExt/{filePath}"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "WebHdfsExt/{path}"; _url = _url.Replace("{accountName}", accountName); _url = _url.Replace("{adlsFileSystemDnsSuffix}", Client.AdlsFileSystemDnsSuffix); - _url = _url.Replace("{filePath}", System.Uri.EscapeDataString(filePath)); + _url = _url.Replace("{path}", System.Uri.EscapeDataString(path)); List _queryParameters = new List(); - _queryParameters.Add(string.Format("expiryOption={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(expiryOption, Client.SerializationSettings).Trim('"')))); - if (expireTime != null) + if (appendMode != null) { - _queryParameters.Add(string.Format("expireTime={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(expireTime, Client.SerializationSettings).Trim('"')))); + _queryParameters.Add(string.Format("appendMode={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(appendMode, Client.SerializationSettings).Trim('"')))); } if (op != null) { _queryParameters.Add(string.Format("op={0}", System.Uri.EscapeDataString(op))); } + if (syncFlag != null) + { + _queryParameters.Add(string.Format("syncFlag={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(syncFlag, Client.SerializationSettings).Trim('"')))); + } if (Client.ApiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); @@ -393,13 +376,21 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PUT"); + _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 (transferEncoding != null) + { + if (_httpRequest.Headers.Contains("Transfer-Encoding")) + { + _httpRequest.Headers.Remove("Transfer-Encoding"); + } + _httpRequest.Headers.TryAddWithoutValidation("Transfer-Encoding", transferEncoding); + } if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) @@ -424,6 +415,15 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) // Serialize Request string _requestContent = null; + if(streamContents == null) + { + throw new System.ArgumentNullException("streamContents"); + } + if (streamContents != null && streamContents != Stream.Null) + { + _httpRequest.Content = new StreamContent(streamContents); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/octet-stream"); + } // Set Credentials if (Client.Credentials != null) { @@ -890,7 +890,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) /// /// The Azure Data Lake Store account to execute filesystem operations on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the destination file /// resulting from the concatenation. /// @@ -916,7 +916,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task ConcatWithHttpMessagesAsync(string accountName, string destinationPath, IList sources, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task ConcatWithHttpMessagesAsync(string accountName, string path, IList sources, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (accountName == null) { @@ -926,9 +926,9 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.AdlsFileSystemDnsSuffix"); } - if (destinationPath == null) + if (path == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "destinationPath"); + throw new ValidationException(ValidationRules.CannotBeNull, "path"); } if (sources == null) { @@ -947,7 +947,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("accountName", accountName); - tracingParameters.Add("destinationPath", destinationPath); + tracingParameters.Add("path", path); tracingParameters.Add("sources", sources); tracingParameters.Add("op", op); tracingParameters.Add("cancellationToken", cancellationToken); @@ -955,10 +955,10 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } // Construct URL var _baseUrl = Client.BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "webhdfs/v1/{destinationPath}"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "webhdfs/v1/{path}"; _url = _url.Replace("{accountName}", accountName); _url = _url.Replace("{adlsFileSystemDnsSuffix}", Client.AdlsFileSystemDnsSuffix); - _url = _url.Replace("{destinationPath}", System.Uri.EscapeDataString(destinationPath)); + _url = _url.Replace("{path}", System.Uri.EscapeDataString(path)); List _queryParameters = new List(); if (sources != null) { @@ -1083,7 +1083,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) /// /// The Azure Data Lake Store account to execute filesystem operations on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the destination file /// resulting from the concatenation. /// @@ -1119,7 +1119,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task MsConcatWithHttpMessagesAsync(string accountName, string msConcatDestinationPath, Stream streamContents, bool? deleteSourceDirectory = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task MsConcatWithHttpMessagesAsync(string accountName, string path, Stream streamContents, bool? deleteSourceDirectory = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (accountName == null) { @@ -1129,9 +1129,9 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.AdlsFileSystemDnsSuffix"); } - if (msConcatDestinationPath == null) + if (path == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "msConcatDestinationPath"); + throw new ValidationException(ValidationRules.CannotBeNull, "path"); } if (streamContents == null) { @@ -1150,7 +1150,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("accountName", accountName); - tracingParameters.Add("msConcatDestinationPath", msConcatDestinationPath); + tracingParameters.Add("path", path); tracingParameters.Add("deleteSourceDirectory", deleteSourceDirectory); tracingParameters.Add("streamContents", streamContents); tracingParameters.Add("op", op); @@ -1159,10 +1159,10 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } // Construct URL var _baseUrl = Client.BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "webhdfs/v1/{msConcatDestinationPath}"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "webhdfs/v1/{path}"; _url = _url.Replace("{accountName}", accountName); _url = _url.Replace("{adlsFileSystemDnsSuffix}", Client.AdlsFileSystemDnsSuffix); - _url = _url.Replace("{msConcatDestinationPath}", System.Uri.EscapeDataString(msConcatDestinationPath)); + _url = _url.Replace("{path}", System.Uri.EscapeDataString(path)); List _queryParameters = new List(); if (deleteSourceDirectory != null) { @@ -1294,7 +1294,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) /// /// The Azure Data Lake Store account to execute filesystem operations on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the directory to list. /// /// @@ -1337,7 +1337,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), bool? tooId = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListFileStatusWithHttpMessagesAsync(string accountName, string path, 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) { @@ -1347,9 +1347,9 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.AdlsFileSystemDnsSuffix"); } - if (listFilePath == null) + if (path == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "listFilePath"); + throw new ValidationException(ValidationRules.CannotBeNull, "path"); } if (Client.ApiVersion == null) { @@ -1364,7 +1364,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("accountName", accountName); - tracingParameters.Add("listFilePath", listFilePath); + tracingParameters.Add("path", path); tracingParameters.Add("listSize", listSize); tracingParameters.Add("listAfter", listAfter); tracingParameters.Add("listBefore", listBefore); @@ -1375,10 +1375,10 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } // Construct URL var _baseUrl = Client.BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "webhdfs/v1/{listFilePath}"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "webhdfs/v1/{path}"; _url = _url.Replace("{accountName}", accountName); _url = _url.Replace("{adlsFileSystemDnsSuffix}", Client.AdlsFileSystemDnsSuffix); - _url = _url.Replace("{listFilePath}", System.Uri.EscapeDataString(listFilePath)); + _url = _url.Replace("{path}", System.Uri.EscapeDataString(path)); List _queryParameters = new List(); if (listSize != null) { @@ -1530,7 +1530,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) /// /// The Azure Data Lake Store account to execute filesystem operations on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the file for which to /// retrieve the summary. /// @@ -1555,7 +1555,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetContentSummaryWithHttpMessagesAsync(string accountName, string getContentSummaryFilePath, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetContentSummaryWithHttpMessagesAsync(string accountName, string path, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (accountName == null) { @@ -1565,9 +1565,9 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.AdlsFileSystemDnsSuffix"); } - if (getContentSummaryFilePath == null) + if (path == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "getContentSummaryFilePath"); + throw new ValidationException(ValidationRules.CannotBeNull, "path"); } if (Client.ApiVersion == null) { @@ -1582,17 +1582,17 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("accountName", accountName); - tracingParameters.Add("getContentSummaryFilePath", getContentSummaryFilePath); + tracingParameters.Add("path", path); tracingParameters.Add("op", op); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "GetContentSummary", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "webhdfs/v1/{getContentSummaryFilePath}"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "webhdfs/v1/{path}"; _url = _url.Replace("{accountName}", accountName); _url = _url.Replace("{adlsFileSystemDnsSuffix}", Client.AdlsFileSystemDnsSuffix); - _url = _url.Replace("{getContentSummaryFilePath}", System.Uri.EscapeDataString(getContentSummaryFilePath)); + _url = _url.Replace("{path}", System.Uri.EscapeDataString(path)); List _queryParameters = new List(); if (op != null) { @@ -1728,7 +1728,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) /// /// The Azure Data Lake Store account to execute filesystem operations on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the file or directory for /// which to retrieve the status. /// @@ -1758,7 +1758,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetFileStatusWithHttpMessagesAsync(string accountName, string getFilePath, bool? tooId = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetFileStatusWithHttpMessagesAsync(string accountName, string path, bool? tooId = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (accountName == null) { @@ -1768,9 +1768,9 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.AdlsFileSystemDnsSuffix"); } - if (getFilePath == null) + if (path == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "getFilePath"); + throw new ValidationException(ValidationRules.CannotBeNull, "path"); } if (Client.ApiVersion == null) { @@ -1785,7 +1785,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("accountName", accountName); - tracingParameters.Add("getFilePath", getFilePath); + tracingParameters.Add("path", path); tracingParameters.Add("tooId", tooId); tracingParameters.Add("op", op); tracingParameters.Add("cancellationToken", cancellationToken); @@ -1793,10 +1793,10 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } // Construct URL var _baseUrl = Client.BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "webhdfs/v1/{getFilePath}"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "webhdfs/v1/{path}"; _url = _url.Replace("{accountName}", accountName); _url = _url.Replace("{adlsFileSystemDnsSuffix}", Client.AdlsFileSystemDnsSuffix); - _url = _url.Replace("{getFilePath}", System.Uri.EscapeDataString(getFilePath)); + _url = _url.Replace("{path}", System.Uri.EscapeDataString(path)); List _queryParameters = new List(); if (tooId != null) { @@ -1931,46 +1931,25 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } /// - /// 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. + /// Opens and reads from the specified file. /// /// /// The Azure Data Lake Store account to execute filesystem operations on. /// - /// - /// The Data Lake Store path (starting with '/') of the file to which to - /// append. + /// + /// The Data Lake Store path (starting with '/') of the file to open. /// - /// - /// The file contents to include when appending to the file. + /// + /// The number of bytes that the server will attempt to retrieve. It will + /// retrieve <= length bytes. /// /// - /// The optional offset in the stream to begin the append operation. Default is - /// to append at the end of the stream. - /// - /// - /// Optionally indicates what to do after completion of the concurrent append. - /// DATA indicates that more data will be sent immediately by the client, the - /// file handle should remain open/locked, and file metadata (including file - /// length, last modified time) should NOT get updated. METADATA indicates that - /// more data will be sent immediately by the client, the file handle should - /// remain open/locked, and file metadata should get updated. CLOSE indicates - /// that the client is done sending data, the file handle should be - /// closed/unlocked, and file metadata should get updated. 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 byte offset to start reading data from. /// /// - /// Optional unique GUID per file indicating all the appends with the same + /// 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 when syncFlag is DATA or METADATA. + /// performance benefit. /// /// /// Headers that will be added to request. @@ -1978,9 +1957,12 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient 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 /// @@ -1990,7 +1972,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?), System.Guid? leaseId = default(System.Guid?), System.Guid? fileSessionId = default(System.Guid?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> OpenWithHttpMessagesAsync(string accountName, string path, long? length = default(long?), long? offset = default(long?), System.Guid? fileSessionId = default(System.Guid?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (accountName == null) { @@ -2000,20 +1982,16 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.AdlsFileSystemDnsSuffix"); } - if (directFilePath == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "directFilePath"); - } - if (streamContents == null) + if (path == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "streamContents"); + throw new ValidationException(ValidationRules.CannotBeNull, "path"); } if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - string op = "APPEND"; - string append = "true"; + string read = "true"; + string op = "OPEN"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2022,47 +2000,41 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("accountName", accountName); - tracingParameters.Add("directFilePath", directFilePath); - tracingParameters.Add("streamContents", streamContents); + tracingParameters.Add("path", path); + tracingParameters.Add("length", length); tracingParameters.Add("offset", offset); - tracingParameters.Add("syncFlag", syncFlag); - tracingParameters.Add("leaseId", leaseId); tracingParameters.Add("fileSessionId", fileSessionId); + tracingParameters.Add("read", read); tracingParameters.Add("op", op); - tracingParameters.Add("append", append); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Append", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Open", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "webhdfs/v1/{directFilePath}"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "webhdfs/v1/{path}"; _url = _url.Replace("{accountName}", accountName); _url = _url.Replace("{adlsFileSystemDnsSuffix}", Client.AdlsFileSystemDnsSuffix); - _url = _url.Replace("{directFilePath}", System.Uri.EscapeDataString(directFilePath)); + _url = _url.Replace("{path}", System.Uri.EscapeDataString(path)); List _queryParameters = new List(); - if (offset != null) - { - _queryParameters.Add(string.Format("offset={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(offset, Client.SerializationSettings).Trim('"')))); - } - if (syncFlag != null) + if (length != null) { - _queryParameters.Add(string.Format("syncFlag={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(syncFlag, Client.SerializationSettings).Trim('"')))); + _queryParameters.Add(string.Format("length={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(length, Client.SerializationSettings).Trim('"')))); } - if (leaseId != null) + if (offset != null) { - _queryParameters.Add(string.Format("leaseId={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(leaseId, Client.SerializationSettings).Trim('"')))); + _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) + if (read != null) { - _queryParameters.Add(string.Format("op={0}", System.Uri.EscapeDataString(op))); + _queryParameters.Add(string.Format("read={0}", System.Uri.EscapeDataString(read))); } - if (append != null) + if (op != null) { - _queryParameters.Add(string.Format("append={0}", System.Uri.EscapeDataString(append))); + _queryParameters.Add(string.Format("op={0}", System.Uri.EscapeDataString(op))); } if (Client.ApiVersion != null) { @@ -2075,7 +2047,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -2106,15 +2078,6 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) // Serialize Request string _requestContent = null; - if(streamContents == null) - { - throw new System.ArgumentNullException("streamContents"); - } - if (streamContents != null && streamContents != Stream.Null) - { - _httpRequest.Content = new StreamContent(streamContents); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/octet-stream"); - } // Set Credentials if (Client.Credentials != null) { @@ -2127,7 +2090,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -2137,13 +2100,14 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new AdlsErrorException(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); - AdlsError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -2153,6 +2117,10 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient 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); @@ -2165,13 +2133,18 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient 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) + { + _result.Body = await _httpResponse.Content.ReadAsStreamAsync().ConfigureAwait(false); + } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -2180,42 +2153,46 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } /// - /// Creates a file with optionally specified content. NOTE: If content is - /// provided, the resulting file cannot be modified using ConcurrentAppend. + /// 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. /// - /// - /// The Data Lake Store path (starting with '/') of the file to create. + /// + /// The Data Lake Store path (starting with '/') of the file to which to + /// append. /// /// - /// The file contents to include when creating the file. This parameter is - /// optional, resulting in an empty file if not specified. + /// The file contents to include when appending to the file. /// - /// - /// The indication of if the file should be overwritten. + /// + /// The optional offset in the stream to begin the append operation. Default is + /// to append at the end of the stream. /// /// - /// Optionally indicates what to do after completion of the create. DATA - /// indicates that more data will be sent immediately by the client, the file - /// handle should remain open/locked, and file metadata (including file length, - /// last modified time) should NOT get updated. METADATA indicates that more - /// data will be sent immediately by the client, the file handle should remain - /// open/locked, and file metadata should get updated. CLOSE indicates that the - /// client is done sending data, the file handle should be closed/unlocked, and - /// file metadata should get updated. Possible values include: 'DATA', - /// 'METADATA', 'CLOSE' + /// Optionally indicates what to do after completion of the concurrent append. + /// DATA indicates that more data will be sent immediately by the client, the + /// file handle should remain open/locked, and file metadata (including file + /// length, last modified time) should NOT get updated. METADATA indicates that + /// more data will be sent immediately by the client, the file handle should + /// remain open/locked, and file metadata should get updated. CLOSE indicates + /// that the client is done sending data, the file handle should be + /// closed/unlocked, and file metadata should get updated. 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. + /// + /// 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. @@ -2235,7 +2212,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?), System.Guid? leaseId = default(System.Guid?), int? permission = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task AppendWithHttpMessagesAsync(string accountName, string path, 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) { @@ -2245,16 +2222,20 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.AdlsFileSystemDnsSuffix"); } - if (directFilePath == null) + if (path == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "path"); + } + if (streamContents == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "directFilePath"); + throw new ValidationException(ValidationRules.CannotBeNull, "streamContents"); } if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - string op = "CREATE"; - string write = "true"; + string append = "true"; + string op = "APPEND"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2263,27 +2244,27 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("accountName", accountName); - tracingParameters.Add("directFilePath", directFilePath); + tracingParameters.Add("path", path); tracingParameters.Add("streamContents", streamContents); - tracingParameters.Add("overwrite", overwrite); + tracingParameters.Add("offset", offset); tracingParameters.Add("syncFlag", syncFlag); tracingParameters.Add("leaseId", leaseId); - tracingParameters.Add("permission", permission); + tracingParameters.Add("fileSessionId", fileSessionId); + tracingParameters.Add("append", append); tracingParameters.Add("op", op); - tracingParameters.Add("write", write); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Create", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Append", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "webhdfs/v1/{directFilePath}"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "webhdfs/v1/{path}"; _url = _url.Replace("{accountName}", accountName); _url = _url.Replace("{adlsFileSystemDnsSuffix}", Client.AdlsFileSystemDnsSuffix); - _url = _url.Replace("{directFilePath}", System.Uri.EscapeDataString(directFilePath)); + _url = _url.Replace("{path}", System.Uri.EscapeDataString(path)); List _queryParameters = new List(); - if (overwrite != null) + if (offset != null) { - _queryParameters.Add(string.Format("overwrite={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(overwrite, Client.SerializationSettings).Trim('"')))); + _queryParameters.Add(string.Format("offset={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(offset, Client.SerializationSettings).Trim('"')))); } if (syncFlag != null) { @@ -2293,17 +2274,17 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) { _queryParameters.Add(string.Format("leaseId={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(leaseId, Client.SerializationSettings).Trim('"')))); } - if (permission != null) + if (fileSessionId != null) { - _queryParameters.Add(string.Format("permission={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(permission, Client.SerializationSettings).Trim('"')))); + _queryParameters.Add(string.Format("fileSessionId={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(fileSessionId, Client.SerializationSettings).Trim('"')))); } - if (op != null) + if (append != null) { - _queryParameters.Add(string.Format("op={0}", System.Uri.EscapeDataString(op))); + _queryParameters.Add(string.Format("append={0}", System.Uri.EscapeDataString(append))); } - if (write != null) + if (op != null) { - _queryParameters.Add(string.Format("write={0}", System.Uri.EscapeDataString(write))); + _queryParameters.Add(string.Format("op={0}", System.Uri.EscapeDataString(op))); } if (Client.ApiVersion != null) { @@ -2316,7 +2297,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PUT"); + _httpRequest.Method = new HttpMethod("POST"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -2347,6 +2328,10 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) // Serialize Request string _requestContent = null; + if(streamContents == null) + { + throw new System.ArgumentNullException("streamContents"); + } if (streamContents != null && streamContents != Stream.Null) { _httpRequest.Content = new StreamContent(streamContents); @@ -2372,7 +2357,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 201) + if ((int)_statusCode != 200) { var ex = new AdlsErrorException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -2417,25 +2402,42 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } /// - /// Opens and reads from the specified file. + /// Creates a file with optionally specified content. NOTE: If content is + /// provided, the resulting file cannot be modified using ConcurrentAppend. /// /// /// The Azure Data Lake Store account to execute filesystem operations on. /// - /// - /// The Data Lake Store path (starting with '/') of the file to open. + /// + /// The Data Lake Store path (starting with '/') of the file to create. /// - /// - /// The number of bytes that the server will attempt to retrieve. It will - /// retrieve <= length bytes. + /// + /// The file contents to include when creating the file. This parameter is + /// optional, resulting in an empty file if not specified. /// - /// - /// The byte offset to start reading data from. + /// + /// The indication of if the file should be overwritten. /// - /// - /// 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. + /// + /// Optionally indicates what to do after completion of the create. DATA + /// indicates that more data will be sent immediately by the client, the file + /// handle should remain open/locked, and file metadata (including file length, + /// last modified time) should NOT get updated. METADATA indicates that more + /// data will be sent immediately by the client, the file handle should remain + /// open/locked, and file metadata should get updated. CLOSE indicates that the + /// client is done sending data, the file handle should be closed/unlocked, and + /// file metadata should get updated. 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. @@ -2443,12 +2445,9 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient 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 /// @@ -2458,7 +2457,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?), System.Guid? fileSessionId = default(System.Guid?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task CreateWithHttpMessagesAsync(string accountName, string path, 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) { @@ -2468,16 +2467,16 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.AdlsFileSystemDnsSuffix"); } - if (directFilePath == null) + if (path == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "directFilePath"); + throw new ValidationException(ValidationRules.CannotBeNull, "path"); } if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - string op = "OPEN"; - string read = "true"; + string write = "true"; + string op = "CREATE"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2486,41 +2485,47 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("accountName", accountName); - tracingParameters.Add("directFilePath", directFilePath); - tracingParameters.Add("length", length); - tracingParameters.Add("offset", offset); - tracingParameters.Add("fileSessionId", fileSessionId); + tracingParameters.Add("path", path); + tracingParameters.Add("streamContents", streamContents); + tracingParameters.Add("overwrite", overwrite); + tracingParameters.Add("syncFlag", syncFlag); + tracingParameters.Add("leaseId", leaseId); + tracingParameters.Add("permission", permission); + tracingParameters.Add("write", write); tracingParameters.Add("op", op); - tracingParameters.Add("read", read); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Open", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Create", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "webhdfs/v1/{directFilePath}"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "webhdfs/v1/{path}"; _url = _url.Replace("{accountName}", accountName); _url = _url.Replace("{adlsFileSystemDnsSuffix}", Client.AdlsFileSystemDnsSuffix); - _url = _url.Replace("{directFilePath}", System.Uri.EscapeDataString(directFilePath)); + _url = _url.Replace("{path}", System.Uri.EscapeDataString(path)); List _queryParameters = new List(); - if (length != null) + if (overwrite != null) { - _queryParameters.Add(string.Format("length={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(length, Client.SerializationSettings).Trim('"')))); + _queryParameters.Add(string.Format("overwrite={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(overwrite, Client.SerializationSettings).Trim('"')))); } - if (offset != null) + if (syncFlag != null) { - _queryParameters.Add(string.Format("offset={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(offset, Client.SerializationSettings).Trim('"')))); + _queryParameters.Add(string.Format("syncFlag={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(syncFlag, Client.SerializationSettings).Trim('"')))); } - if (fileSessionId != null) + if (leaseId != null) { - _queryParameters.Add(string.Format("fileSessionId={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(fileSessionId, Client.SerializationSettings).Trim('"')))); + _queryParameters.Add(string.Format("leaseId={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(leaseId, Client.SerializationSettings).Trim('"')))); } - if (op != null) + if (permission != null) { - _queryParameters.Add(string.Format("op={0}", System.Uri.EscapeDataString(op))); + _queryParameters.Add(string.Format("permission={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(permission, Client.SerializationSettings).Trim('"')))); } - if (read != null) + if (write != null) { - _queryParameters.Add(string.Format("read={0}", System.Uri.EscapeDataString(read))); + _queryParameters.Add(string.Format("write={0}", System.Uri.EscapeDataString(write))); + } + if (op != null) + { + _queryParameters.Add(string.Format("op={0}", System.Uri.EscapeDataString(op))); } if (Client.ApiVersion != null) { @@ -2533,7 +2538,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.Method = new HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -2564,6 +2569,11 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) // Serialize Request string _requestContent = null; + if (streamContents != null && streamContents != Stream.Null) + { + _httpRequest.Content = new StreamContent(streamContents); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/octet-stream"); + } // Set Credentials if (Client.Credentials != null) { @@ -2576,7 +2586,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -2584,16 +2594,15 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 201) { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new AdlsErrorException(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); + AdlsError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -2603,10 +2612,6 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient 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); @@ -2619,18 +2624,13 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient 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) - { - _result.Body = await _httpResponse.Content.ReadAsStreamAsync().ConfigureAwait(false); - } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -2644,7 +2644,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) /// /// The Azure Data Lake Store account to execute filesystem operations on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the file or directory on /// which to set the ACL. /// @@ -2670,7 +2670,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task SetAclWithHttpMessagesAsync(string accountName, string setAclFilePath, string aclspec, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task SetAclWithHttpMessagesAsync(string accountName, string path, string aclspec, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (accountName == null) { @@ -2680,9 +2680,9 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.AdlsFileSystemDnsSuffix"); } - if (setAclFilePath == null) + if (path == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "setAclFilePath"); + throw new ValidationException(ValidationRules.CannotBeNull, "path"); } if (aclspec == null) { @@ -2701,7 +2701,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("accountName", accountName); - tracingParameters.Add("setAclFilePath", setAclFilePath); + tracingParameters.Add("path", path); tracingParameters.Add("aclspec", aclspec); tracingParameters.Add("op", op); tracingParameters.Add("cancellationToken", cancellationToken); @@ -2709,10 +2709,10 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } // Construct URL var _baseUrl = Client.BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "webhdfs/v1/{setAclFilePath}"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "webhdfs/v1/{path}"; _url = _url.Replace("{accountName}", accountName); _url = _url.Replace("{adlsFileSystemDnsSuffix}", Client.AdlsFileSystemDnsSuffix); - _url = _url.Replace("{setAclFilePath}", System.Uri.EscapeDataString(setAclFilePath)); + _url = _url.Replace("{path}", System.Uri.EscapeDataString(path)); List _queryParameters = new List(); if (aclspec != null) { @@ -2834,7 +2834,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) /// /// The Azure Data Lake Store account to execute filesystem operations on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the file or directory with /// the ACL being modified. /// @@ -2860,7 +2860,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task ModifyAclEntriesWithHttpMessagesAsync(string accountName, string modifyAclFilePath, string aclspec, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task ModifyAclEntriesWithHttpMessagesAsync(string accountName, string path, string aclspec, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (accountName == null) { @@ -2870,9 +2870,9 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.AdlsFileSystemDnsSuffix"); } - if (modifyAclFilePath == null) + if (path == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "modifyAclFilePath"); + throw new ValidationException(ValidationRules.CannotBeNull, "path"); } if (aclspec == null) { @@ -2891,7 +2891,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("accountName", accountName); - tracingParameters.Add("modifyAclFilePath", modifyAclFilePath); + tracingParameters.Add("path", path); tracingParameters.Add("aclspec", aclspec); tracingParameters.Add("op", op); tracingParameters.Add("cancellationToken", cancellationToken); @@ -2899,10 +2899,10 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } // Construct URL var _baseUrl = Client.BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "webhdfs/v1/{modifyAclFilePath}"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "webhdfs/v1/{path}"; _url = _url.Replace("{accountName}", accountName); _url = _url.Replace("{adlsFileSystemDnsSuffix}", Client.AdlsFileSystemDnsSuffix); - _url = _url.Replace("{modifyAclFilePath}", System.Uri.EscapeDataString(modifyAclFilePath)); + _url = _url.Replace("{path}", System.Uri.EscapeDataString(path)); List _queryParameters = new List(); if (aclspec != null) { @@ -3024,7 +3024,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) /// /// The Azure Data Lake Store account to execute filesystem operations on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the file or directory with /// the ACL being removed. /// @@ -3050,7 +3050,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task RemoveAclEntriesWithHttpMessagesAsync(string accountName, string removeAclFilePath, string aclspec, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task RemoveAclEntriesWithHttpMessagesAsync(string accountName, string path, string aclspec, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (accountName == null) { @@ -3060,9 +3060,9 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.AdlsFileSystemDnsSuffix"); } - if (removeAclFilePath == null) + if (path == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "removeAclFilePath"); + throw new ValidationException(ValidationRules.CannotBeNull, "path"); } if (aclspec == null) { @@ -3081,7 +3081,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("accountName", accountName); - tracingParameters.Add("removeAclFilePath", removeAclFilePath); + tracingParameters.Add("path", path); tracingParameters.Add("aclspec", aclspec); tracingParameters.Add("op", op); tracingParameters.Add("cancellationToken", cancellationToken); @@ -3089,10 +3089,10 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } // Construct URL var _baseUrl = Client.BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "webhdfs/v1/{removeAclFilePath}"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "webhdfs/v1/{path}"; _url = _url.Replace("{accountName}", accountName); _url = _url.Replace("{adlsFileSystemDnsSuffix}", Client.AdlsFileSystemDnsSuffix); - _url = _url.Replace("{removeAclFilePath}", System.Uri.EscapeDataString(removeAclFilePath)); + _url = _url.Replace("{path}", System.Uri.EscapeDataString(path)); List _queryParameters = new List(); if (aclspec != null) { @@ -3215,7 +3215,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) /// /// The Azure Data Lake Store account to execute filesystem operations on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the directory with the /// default ACL being removed. /// @@ -3237,7 +3237,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task RemoveDefaultAclWithHttpMessagesAsync(string accountName, string defaultAclFilePath, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task RemoveDefaultAclWithHttpMessagesAsync(string accountName, string path, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (accountName == null) { @@ -3247,9 +3247,9 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.AdlsFileSystemDnsSuffix"); } - if (defaultAclFilePath == null) + if (path == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "defaultAclFilePath"); + throw new ValidationException(ValidationRules.CannotBeNull, "path"); } if (Client.ApiVersion == null) { @@ -3264,17 +3264,17 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("accountName", accountName); - tracingParameters.Add("defaultAclFilePath", defaultAclFilePath); + tracingParameters.Add("path", path); tracingParameters.Add("op", op); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "RemoveDefaultAcl", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "webhdfs/v1/{defaultAclFilePath}"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "webhdfs/v1/{path}"; _url = _url.Replace("{accountName}", accountName); _url = _url.Replace("{adlsFileSystemDnsSuffix}", Client.AdlsFileSystemDnsSuffix); - _url = _url.Replace("{defaultAclFilePath}", System.Uri.EscapeDataString(defaultAclFilePath)); + _url = _url.Replace("{path}", System.Uri.EscapeDataString(path)); List _queryParameters = new List(); if (op != null) { @@ -3393,7 +3393,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) /// /// The Azure Data Lake Store account to execute filesystem operations on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the file or directory with /// the ACL being removed. /// @@ -3415,7 +3415,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task RemoveAclWithHttpMessagesAsync(string accountName, string aclFilePath, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task RemoveAclWithHttpMessagesAsync(string accountName, string path, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (accountName == null) { @@ -3425,9 +3425,9 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.AdlsFileSystemDnsSuffix"); } - if (aclFilePath == null) + if (path == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "aclFilePath"); + throw new ValidationException(ValidationRules.CannotBeNull, "path"); } if (Client.ApiVersion == null) { @@ -3442,17 +3442,17 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("accountName", accountName); - tracingParameters.Add("aclFilePath", aclFilePath); + tracingParameters.Add("path", path); tracingParameters.Add("op", op); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "RemoveAcl", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "webhdfs/v1/{aclFilePath}"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "webhdfs/v1/{path}"; _url = _url.Replace("{accountName}", accountName); _url = _url.Replace("{adlsFileSystemDnsSuffix}", Client.AdlsFileSystemDnsSuffix); - _url = _url.Replace("{aclFilePath}", System.Uri.EscapeDataString(aclFilePath)); + _url = _url.Replace("{path}", System.Uri.EscapeDataString(path)); List _queryParameters = new List(); if (op != null) { @@ -3570,7 +3570,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) /// /// The Azure Data Lake Store account to execute filesystem operations on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the file or directory for /// which to get the ACL. /// @@ -3600,7 +3600,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetAclStatusWithHttpMessagesAsync(string accountName, string aclFilePath, bool? tooId = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetAclStatusWithHttpMessagesAsync(string accountName, string path, bool? tooId = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (accountName == null) { @@ -3610,9 +3610,9 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.AdlsFileSystemDnsSuffix"); } - if (aclFilePath == null) + if (path == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "aclFilePath"); + throw new ValidationException(ValidationRules.CannotBeNull, "path"); } if (Client.ApiVersion == null) { @@ -3627,7 +3627,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("accountName", accountName); - tracingParameters.Add("aclFilePath", aclFilePath); + tracingParameters.Add("path", path); tracingParameters.Add("tooId", tooId); tracingParameters.Add("op", op); tracingParameters.Add("cancellationToken", cancellationToken); @@ -3635,10 +3635,10 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } // Construct URL var _baseUrl = Client.BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "webhdfs/v1/{aclFilePath}"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "webhdfs/v1/{path}"; _url = _url.Replace("{accountName}", accountName); _url = _url.Replace("{adlsFileSystemDnsSuffix}", Client.AdlsFileSystemDnsSuffix); - _url = _url.Replace("{aclFilePath}", System.Uri.EscapeDataString(aclFilePath)); + _url = _url.Replace("{path}", System.Uri.EscapeDataString(path)); List _queryParameters = new List(); if (tooId != null) { @@ -3778,7 +3778,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) /// /// The Azure Data Lake Store account to execute filesystem operations on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the file or directory to /// delete. /// @@ -3806,7 +3806,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> DeleteWithHttpMessagesAsync(string accountName, string filePath, bool? recursive = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteWithHttpMessagesAsync(string accountName, string path, bool? recursive = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (accountName == null) { @@ -3816,9 +3816,9 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.AdlsFileSystemDnsSuffix"); } - if (filePath == null) + if (path == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "filePath"); + throw new ValidationException(ValidationRules.CannotBeNull, "path"); } if (Client.ApiVersion == null) { @@ -3833,7 +3833,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("accountName", accountName); - tracingParameters.Add("filePath", filePath); + tracingParameters.Add("path", path); tracingParameters.Add("recursive", recursive); tracingParameters.Add("op", op); tracingParameters.Add("cancellationToken", cancellationToken); @@ -3841,10 +3841,10 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } // Construct URL var _baseUrl = Client.BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "webhdfs/v1/{filePath}"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "webhdfs/v1/{path}"; _url = _url.Replace("{accountName}", accountName); _url = _url.Replace("{adlsFileSystemDnsSuffix}", Client.AdlsFileSystemDnsSuffix); - _url = _url.Replace("{filePath}", System.Uri.EscapeDataString(filePath)); + _url = _url.Replace("{path}", System.Uri.EscapeDataString(path)); List _queryParameters = new List(); if (recursive != null) { @@ -3984,7 +3984,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) /// /// The Azure Data Lake Store account to execute filesystem operations on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the file or directory to /// move/rename. /// @@ -4012,7 +4012,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> RenameWithHttpMessagesAsync(string accountName, string renameFilePath, string destination, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> RenameWithHttpMessagesAsync(string accountName, string path, string destination, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (accountName == null) { @@ -4022,9 +4022,9 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.AdlsFileSystemDnsSuffix"); } - if (renameFilePath == null) + if (path == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "renameFilePath"); + throw new ValidationException(ValidationRules.CannotBeNull, "path"); } if (destination == null) { @@ -4043,7 +4043,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("accountName", accountName); - tracingParameters.Add("renameFilePath", renameFilePath); + tracingParameters.Add("path", path); tracingParameters.Add("destination", destination); tracingParameters.Add("op", op); tracingParameters.Add("cancellationToken", cancellationToken); @@ -4051,10 +4051,10 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } // Construct URL var _baseUrl = Client.BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "webhdfs/v1/{renameFilePath}"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "webhdfs/v1/{path}"; _url = _url.Replace("{accountName}", accountName); _url = _url.Replace("{adlsFileSystemDnsSuffix}", Client.AdlsFileSystemDnsSuffix); - _url = _url.Replace("{renameFilePath}", System.Uri.EscapeDataString(renameFilePath)); + _url = _url.Replace("{path}", System.Uri.EscapeDataString(path)); List _queryParameters = new List(); if (destination != null) { @@ -4194,7 +4194,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) /// /// The Azure Data Lake Store account to execute filesystem operations on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the file or directory for /// which to set the owner. /// @@ -4224,7 +4224,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task SetOwnerWithHttpMessagesAsync(string accountName, string setOwnerFilePath, string owner = default(string), string group = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task SetOwnerWithHttpMessagesAsync(string accountName, string path, string owner = default(string), string group = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (accountName == null) { @@ -4234,9 +4234,9 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.AdlsFileSystemDnsSuffix"); } - if (setOwnerFilePath == null) + if (path == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "setOwnerFilePath"); + throw new ValidationException(ValidationRules.CannotBeNull, "path"); } if (Client.ApiVersion == null) { @@ -4251,7 +4251,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("accountName", accountName); - tracingParameters.Add("setOwnerFilePath", setOwnerFilePath); + tracingParameters.Add("path", path); tracingParameters.Add("owner", owner); tracingParameters.Add("group", group); tracingParameters.Add("op", op); @@ -4260,10 +4260,10 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } // Construct URL var _baseUrl = Client.BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "webhdfs/v1/{setOwnerFilePath}"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "webhdfs/v1/{path}"; _url = _url.Replace("{accountName}", accountName); _url = _url.Replace("{adlsFileSystemDnsSuffix}", Client.AdlsFileSystemDnsSuffix); - _url = _url.Replace("{setOwnerFilePath}", System.Uri.EscapeDataString(setOwnerFilePath)); + _url = _url.Replace("{path}", System.Uri.EscapeDataString(path)); List _queryParameters = new List(); if (owner != null) { @@ -4389,7 +4389,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) /// /// The Azure Data Lake Store account to execute filesystem operations on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the file or directory for /// which to set the permission. /// @@ -4415,7 +4415,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task SetPermissionWithHttpMessagesAsync(string accountName, string setPermissionFilePath, string permission = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task SetPermissionWithHttpMessagesAsync(string accountName, string path, string permission = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (accountName == null) { @@ -4425,9 +4425,9 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.AdlsFileSystemDnsSuffix"); } - if (setPermissionFilePath == null) + if (path == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "setPermissionFilePath"); + throw new ValidationException(ValidationRules.CannotBeNull, "path"); } if (Client.ApiVersion == null) { @@ -4442,7 +4442,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("accountName", accountName); - tracingParameters.Add("setPermissionFilePath", setPermissionFilePath); + tracingParameters.Add("path", path); tracingParameters.Add("permission", permission); tracingParameters.Add("op", op); tracingParameters.Add("cancellationToken", cancellationToken); @@ -4450,10 +4450,10 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } // Construct URL var _baseUrl = Client.BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "webhdfs/v1/{setPermissionFilePath}"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "webhdfs/v1/{path}"; _url = _url.Replace("{accountName}", accountName); _url = _url.Replace("{adlsFileSystemDnsSuffix}", Client.AdlsFileSystemDnsSuffix); - _url = _url.Replace("{setPermissionFilePath}", System.Uri.EscapeDataString(setPermissionFilePath)); + _url = _url.Replace("{path}", System.Uri.EscapeDataString(path)); List _queryParameters = new List(); if (permission != null) { diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/FileSystemOperationsExtensions.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/FileSystemOperationsExtensions.cs index 91fcf13e79a0..3ad4a23aa271 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/FileSystemOperationsExtensions.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/FileSystemOperationsExtensions.cs @@ -2,7 +2,7 @@ // Licensed 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 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -25,6 +25,75 @@ namespace Microsoft.Azure.Management.DataLake.Store /// public static partial class FileSystemOperationsExtensions { + /// + /// Sets or removes the expiration time on the specified file. This operation + /// can only be executed against files. Folders are not supported. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The Azure Data Lake Store account to execute filesystem operations on. + /// + /// + /// The Data Lake Store path (starting with '/') of the file on which to set or + /// remove the expiration time. + /// + /// + /// Indicates the type of expiration to use for the file: 1. NeverExpire: + /// ExpireTime is ignored. 2. RelativeToNow: ExpireTime is an integer in + /// milliseconds representing the expiration date relative to when file + /// expiration is updated. 3. RelativeToCreationDate: ExpireTime is an integer + /// in milliseconds representing the expiration date relative to file creation. + /// 4. Absolute: ExpireTime is an integer in milliseconds, as a Unix timestamp + /// relative to 1/1/1970 00:00:00. Possible values include: 'NeverExpire', + /// 'RelativeToNow', 'RelativeToCreationDate', 'Absolute' + /// + /// + /// The time that the file will expire, corresponding to the ExpiryOption that + /// was set. + /// + public static void SetFileExpiry(this IFileSystemOperations operations, string accountName, string path, ExpiryOptionType expiryOption, long? expireTime = default(long?)) + { + operations.SetFileExpiryAsync(accountName, path, expiryOption, expireTime).GetAwaiter().GetResult(); + } + + /// + /// Sets or removes the expiration time on the specified file. This operation + /// can only be executed against files. Folders are not supported. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The Azure Data Lake Store account to execute filesystem operations on. + /// + /// + /// The Data Lake Store path (starting with '/') of the file on which to set or + /// remove the expiration time. + /// + /// + /// Indicates the type of expiration to use for the file: 1. NeverExpire: + /// ExpireTime is ignored. 2. RelativeToNow: ExpireTime is an integer in + /// milliseconds representing the expiration date relative to when file + /// expiration is updated. 3. RelativeToCreationDate: ExpireTime is an integer + /// in milliseconds representing the expiration date relative to file creation. + /// 4. Absolute: ExpireTime is an integer in milliseconds, as a Unix timestamp + /// relative to 1/1/1970 00:00:00. Possible values include: 'NeverExpire', + /// 'RelativeToNow', 'RelativeToCreationDate', 'Absolute' + /// + /// + /// The time that the file will expire, corresponding to the ExpiryOption that + /// was set. + /// + /// + /// The cancellation token. + /// + public static async Task SetFileExpiryAsync(this IFileSystemOperations operations, string accountName, string path, ExpiryOptionType expiryOption, long? expireTime = default(long?), CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.SetFileExpiryWithHttpMessagesAsync(accountName, path, expiryOption, expireTime, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + /// /// Appends to the specified file, optionally first creating the file if it /// does not yet exist. This method supports multiple concurrent appends to the @@ -41,7 +110,7 @@ public static partial class FileSystemOperationsExtensions /// /// The Azure Data Lake Store account to execute filesystem operations on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the file to which to append /// using concurrent append. /// @@ -64,9 +133,9 @@ public static partial class FileSystemOperationsExtensions /// closed/unlocked, and file metadata should get updated. Possible values /// include: 'DATA', 'METADATA', 'CLOSE' /// - public static void ConcurrentAppend(this IFileSystemOperations operations, string accountName, string filePath, Stream streamContents, AppendModeType? appendMode = default(AppendModeType?), SyncFlag? syncFlag = default(SyncFlag?)) + public static void ConcurrentAppend(this IFileSystemOperations operations, string accountName, string path, Stream streamContents, AppendModeType? appendMode = default(AppendModeType?), SyncFlag? syncFlag = default(SyncFlag?)) { - operations.ConcurrentAppendAsync(accountName, filePath, streamContents, appendMode, syncFlag).GetAwaiter().GetResult(); + operations.ConcurrentAppendAsync(accountName, path, streamContents, appendMode, syncFlag).GetAwaiter().GetResult(); } /// @@ -85,7 +154,7 @@ public static partial class FileSystemOperationsExtensions /// /// The Azure Data Lake Store account to execute filesystem operations on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the file to which to append /// using concurrent append. /// @@ -111,78 +180,9 @@ public static partial class FileSystemOperationsExtensions /// /// The cancellation token. /// - 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)).Dispose(); - } - - /// - /// Sets or removes the expiration time on the specified file. This operation - /// can only be executed against files. Folders are not supported. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The Azure Data Lake Store account to execute filesystem operations on. - /// - /// - /// The Data Lake Store path (starting with '/') of the file on which to set or - /// remove the expiration time. - /// - /// - /// Indicates the type of expiration to use for the file: 1. NeverExpire: - /// ExpireTime is ignored. 2. RelativeToNow: ExpireTime is an integer in - /// milliseconds representing the expiration date relative to when file - /// expiration is updated. 3. RelativeToCreationDate: ExpireTime is an integer - /// in milliseconds representing the expiration date relative to file creation. - /// 4. Absolute: ExpireTime is an integer in milliseconds, as a Unix timestamp - /// relative to 1/1/1970 00:00:00. Possible values include: 'NeverExpire', - /// 'RelativeToNow', 'RelativeToCreationDate', 'Absolute' - /// - /// - /// The time that the file will expire, corresponding to the ExpiryOption that - /// was set. - /// - public static void SetFileExpiry(this IFileSystemOperations operations, string accountName, string filePath, ExpiryOptionType expiryOption, long? expireTime = default(long?)) - { - operations.SetFileExpiryAsync(accountName, filePath, expiryOption, expireTime).GetAwaiter().GetResult(); - } - - /// - /// Sets or removes the expiration time on the specified file. This operation - /// can only be executed against files. Folders are not supported. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The Azure Data Lake Store account to execute filesystem operations on. - /// - /// - /// The Data Lake Store path (starting with '/') of the file on which to set or - /// remove the expiration time. - /// - /// - /// Indicates the type of expiration to use for the file: 1. NeverExpire: - /// ExpireTime is ignored. 2. RelativeToNow: ExpireTime is an integer in - /// milliseconds representing the expiration date relative to when file - /// expiration is updated. 3. RelativeToCreationDate: ExpireTime is an integer - /// in milliseconds representing the expiration date relative to file creation. - /// 4. Absolute: ExpireTime is an integer in milliseconds, as a Unix timestamp - /// relative to 1/1/1970 00:00:00. Possible values include: 'NeverExpire', - /// 'RelativeToNow', 'RelativeToCreationDate', 'Absolute' - /// - /// - /// The time that the file will expire, corresponding to the ExpiryOption that - /// was set. - /// - /// - /// The cancellation token. - /// - public static async Task SetFileExpiryAsync(this IFileSystemOperations operations, string accountName, string filePath, ExpiryOptionType expiryOption, long? expireTime = default(long?), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ConcurrentAppendAsync(this IFileSystemOperations operations, string accountName, string path, Stream streamContents, AppendModeType? appendMode = default(AppendModeType?), SyncFlag? syncFlag = default(SyncFlag?), CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.SetFileExpiryWithHttpMessagesAsync(accountName, filePath, expiryOption, expireTime, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.ConcurrentAppendWithHttpMessagesAsync(accountName, path, streamContents, appendMode, syncFlag, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -288,7 +288,7 @@ public static void CheckAccess(this IFileSystemOperations operations, string acc /// /// The Azure Data Lake Store account to execute filesystem operations on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the destination file /// resulting from the concatenation. /// @@ -296,9 +296,9 @@ public static void CheckAccess(this IFileSystemOperations operations, string acc /// 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) + public static void Concat(this IFileSystemOperations operations, string accountName, string path, IList sources) { - operations.ConcatAsync(accountName, destinationPath, sources).GetAwaiter().GetResult(); + operations.ConcatAsync(accountName, path, sources).GetAwaiter().GetResult(); } /// @@ -311,7 +311,7 @@ public static void Concat(this IFileSystemOperations operations, string accountN /// /// The Azure Data Lake Store account to execute filesystem operations on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the destination file /// resulting from the concatenation. /// @@ -322,9 +322,9 @@ public static void Concat(this IFileSystemOperations operations, string accountN /// /// The cancellation token. /// - public static async Task ConcatAsync(this IFileSystemOperations operations, string accountName, string destinationPath, IList sources, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ConcatAsync(this IFileSystemOperations operations, string accountName, string path, IList sources, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.ConcatWithHttpMessagesAsync(accountName, destinationPath, sources, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.ConcatWithHttpMessagesAsync(accountName, path, sources, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -339,7 +339,7 @@ public static void Concat(this IFileSystemOperations operations, string accountN /// /// The Azure Data Lake Store account to execute filesystem operations on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the destination file /// resulting from the concatenation. /// @@ -357,9 +357,9 @@ public static void Concat(this IFileSystemOperations operations, string accountN /// not source files. Only set this to true when source files are the only /// files in the source directory. /// - public static void MsConcat(this IFileSystemOperations operations, string accountName, string msConcatDestinationPath, Stream streamContents, bool? deleteSourceDirectory = default(bool?)) + public static void MsConcat(this IFileSystemOperations operations, string accountName, string path, Stream streamContents, bool? deleteSourceDirectory = default(bool?)) { - operations.MsConcatAsync(accountName, msConcatDestinationPath, streamContents, deleteSourceDirectory).GetAwaiter().GetResult(); + operations.MsConcatAsync(accountName, path, streamContents, deleteSourceDirectory).GetAwaiter().GetResult(); } /// @@ -374,7 +374,7 @@ public static void Concat(this IFileSystemOperations operations, string accountN /// /// The Azure Data Lake Store account to execute filesystem operations on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the destination file /// resulting from the concatenation. /// @@ -395,9 +395,9 @@ public static void Concat(this IFileSystemOperations operations, string accountN /// /// The cancellation token. /// - public static async Task MsConcatAsync(this IFileSystemOperations operations, string accountName, string msConcatDestinationPath, Stream streamContents, bool? deleteSourceDirectory = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task MsConcatAsync(this IFileSystemOperations operations, string accountName, string path, Stream streamContents, bool? deleteSourceDirectory = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.MsConcatWithHttpMessagesAsync(accountName, msConcatDestinationPath, streamContents, deleteSourceDirectory, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.MsConcatWithHttpMessagesAsync(accountName, path, streamContents, deleteSourceDirectory, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -410,7 +410,7 @@ public static void Concat(this IFileSystemOperations operations, string accountN /// /// The Azure Data Lake Store account to execute filesystem operations on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the directory to list. /// /// @@ -432,9 +432,9 @@ public static void Concat(this IFileSystemOperations operations, string accountN /// 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?)) + public static FileStatusesResult ListFileStatus(this IFileSystemOperations operations, string accountName, string path, int? listSize = default(int?), string listAfter = default(string), string listBefore = default(string), bool? tooId = default(bool?)) { - return operations.ListFileStatusAsync(accountName, listFilePath, listSize, listAfter, listBefore, tooId).GetAwaiter().GetResult(); + return operations.ListFileStatusAsync(accountName, path, listSize, listAfter, listBefore, tooId).GetAwaiter().GetResult(); } /// @@ -447,7 +447,7 @@ public static void Concat(this IFileSystemOperations operations, string accountN /// /// The Azure Data Lake Store account to execute filesystem operations on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the directory to list. /// /// @@ -472,9 +472,9 @@ public static void Concat(this IFileSystemOperations operations, string accountN /// /// 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), bool? tooId = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListFileStatusAsync(this IFileSystemOperations operations, string accountName, string path, 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, tooId, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListFileStatusWithHttpMessagesAsync(accountName, path, listSize, listAfter, listBefore, tooId, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -489,13 +489,13 @@ public static void Concat(this IFileSystemOperations operations, string accountN /// /// The Azure Data Lake Store account to execute filesystem operations on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the file for which to /// retrieve the summary. /// - public static ContentSummaryResult GetContentSummary(this IFileSystemOperations operations, string accountName, string getContentSummaryFilePath) + public static ContentSummaryResult GetContentSummary(this IFileSystemOperations operations, string accountName, string path) { - return operations.GetContentSummaryAsync(accountName, getContentSummaryFilePath).GetAwaiter().GetResult(); + return operations.GetContentSummaryAsync(accountName, path).GetAwaiter().GetResult(); } /// @@ -507,16 +507,16 @@ public static ContentSummaryResult GetContentSummary(this IFileSystemOperations /// /// The Azure Data Lake Store account to execute filesystem operations on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the file for which to /// retrieve the summary. /// /// /// The cancellation token. /// - public static async Task GetContentSummaryAsync(this IFileSystemOperations operations, string accountName, string getContentSummaryFilePath, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetContentSummaryAsync(this IFileSystemOperations operations, string accountName, string path, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetContentSummaryWithHttpMessagesAsync(accountName, getContentSummaryFilePath, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetContentSummaryWithHttpMessagesAsync(accountName, path, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -531,7 +531,7 @@ public static ContentSummaryResult GetContentSummary(this IFileSystemOperations /// /// The Azure Data Lake Store account to execute filesystem operations on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the file or directory for /// which to retrieve the status. /// @@ -540,9 +540,9 @@ public static ContentSummaryResult GetContentSummary(this IFileSystemOperations /// 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?)) + public static FileStatusResult GetFileStatus(this IFileSystemOperations operations, string accountName, string path, bool? tooId = default(bool?)) { - return operations.GetFileStatusAsync(accountName, getFilePath, tooId).GetAwaiter().GetResult(); + return operations.GetFileStatusAsync(accountName, path, tooId).GetAwaiter().GetResult(); } /// @@ -554,7 +554,7 @@ public static ContentSummaryResult GetContentSummary(this IFileSystemOperations /// /// The Azure Data Lake Store account to execute filesystem operations on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the file or directory for /// which to retrieve the status. /// @@ -566,14 +566,77 @@ public static ContentSummaryResult GetContentSummary(this IFileSystemOperations /// /// The cancellation token. /// - public static async Task GetFileStatusAsync(this IFileSystemOperations operations, string accountName, string getFilePath, bool? tooId = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetFileStatusAsync(this IFileSystemOperations operations, string accountName, string path, bool? tooId = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetFileStatusWithHttpMessagesAsync(accountName, getFilePath, tooId, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetFileStatusWithHttpMessagesAsync(accountName, path, tooId, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } + /// + /// Opens and reads from the specified file. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The Azure Data Lake Store account to execute filesystem operations on. + /// + /// + /// The Data Lake Store path (starting with '/') of the file to open. + /// + /// + /// The number of bytes that the server will attempt to retrieve. It will + /// retrieve <= length bytes. + /// + /// + /// 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. + /// + public static Stream Open(this IFileSystemOperations operations, string accountName, string path, long? length = default(long?), long? offset = default(long?), System.Guid? fileSessionId = default(System.Guid?)) + { + return operations.OpenAsync(accountName, path, length, offset, fileSessionId).GetAwaiter().GetResult(); + } + + /// + /// Opens and reads from the specified file. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The Azure Data Lake Store account to execute filesystem operations on. + /// + /// + /// The Data Lake Store path (starting with '/') of the file to open. + /// + /// + /// The number of bytes that the server will attempt to retrieve. It will + /// retrieve <= length bytes. + /// + /// + /// 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 path, long? length = default(long?), long? offset = default(long?), System.Guid? fileSessionId = default(System.Guid?), CancellationToken cancellationToken = default(CancellationToken)) + { + var _result = await operations.OpenWithHttpMessagesAsync(accountName, path, length, offset, fileSessionId, null, cancellationToken).ConfigureAwait(false); + _result.Request.Dispose(); + return _result.Body; + } + /// /// Used for serial appends to the specified file. NOTE: The target must not /// contain data added by ConcurrentAppend. ConcurrentAppend and Append cannot @@ -587,7 +650,7 @@ public static ContentSummaryResult GetContentSummary(this IFileSystemOperations /// /// The Azure Data Lake Store account to execute filesystem operations on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the file to which to /// append. /// @@ -619,9 +682,9 @@ public static ContentSummaryResult GetContentSummary(this IFileSystemOperations /// 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?)) + public static void Append(this IFileSystemOperations operations, string accountName, string path, 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, leaseId, fileSessionId).GetAwaiter().GetResult(); + operations.AppendAsync(accountName, path, streamContents, offset, syncFlag, leaseId, fileSessionId).GetAwaiter().GetResult(); } /// @@ -637,7 +700,7 @@ public static ContentSummaryResult GetContentSummary(this IFileSystemOperations /// /// The Azure Data Lake Store account to execute filesystem operations on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the file to which to /// append. /// @@ -672,9 +735,9 @@ public static ContentSummaryResult GetContentSummary(this IFileSystemOperations /// /// 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?), System.Guid? leaseId = default(System.Guid?), System.Guid? fileSessionId = default(System.Guid?), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task AppendAsync(this IFileSystemOperations operations, string accountName, string path, 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, leaseId, fileSessionId, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.AppendWithHttpMessagesAsync(accountName, path, streamContents, offset, syncFlag, leaseId, fileSessionId, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -687,7 +750,7 @@ public static ContentSummaryResult GetContentSummary(this IFileSystemOperations /// /// The Azure Data Lake Store account to execute filesystem operations on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the file to create. /// /// @@ -718,9 +781,9 @@ public static ContentSummaryResult GetContentSummary(this IFileSystemOperations /// 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?)) + public static void Create(this IFileSystemOperations operations, string accountName, string path, 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, leaseId, permission).GetAwaiter().GetResult(); + operations.CreateAsync(accountName, path, streamContents, overwrite, syncFlag, leaseId, permission).GetAwaiter().GetResult(); } /// @@ -733,7 +796,7 @@ public static ContentSummaryResult GetContentSummary(this IFileSystemOperations /// /// The Azure Data Lake Store account to execute filesystem operations on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the file to create. /// /// @@ -767,72 +830,9 @@ public static ContentSummaryResult GetContentSummary(this IFileSystemOperations /// /// 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?), System.Guid? leaseId = default(System.Guid?), int? permission = default(int?), CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.CreateWithHttpMessagesAsync(accountName, directFilePath, streamContents, overwrite, syncFlag, leaseId, permission, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - - /// - /// Opens and reads from the specified file. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The Azure Data Lake Store account to execute filesystem operations on. - /// - /// - /// The Data Lake Store path (starting with '/') of the file to open. - /// - /// - /// The number of bytes that the server will attempt to retrieve. It will - /// retrieve <= length bytes. - /// - /// - /// 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. - /// - 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, fileSessionId).GetAwaiter().GetResult(); - } - - /// - /// Opens and reads from the specified file. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The Azure Data Lake Store account to execute filesystem operations on. - /// - /// - /// The Data Lake Store path (starting with '/') of the file to open. - /// - /// - /// The number of bytes that the server will attempt to retrieve. It will - /// retrieve <= length bytes. - /// - /// - /// 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?), System.Guid? fileSessionId = default(System.Guid?), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateAsync(this IFileSystemOperations operations, string accountName, string path, 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)) { - var _result = await operations.OpenWithHttpMessagesAsync(accountName, directFilePath, length, offset, fileSessionId, null, cancellationToken).ConfigureAwait(false); - _result.Request.Dispose(); - return _result.Body; + (await operations.CreateWithHttpMessagesAsync(accountName, path, streamContents, overwrite, syncFlag, leaseId, permission, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -844,7 +844,7 @@ public static ContentSummaryResult GetContentSummary(this IFileSystemOperations /// /// The Azure Data Lake Store account to execute filesystem operations on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the file or directory on /// which to set the ACL. /// @@ -852,9 +852,9 @@ public static ContentSummaryResult GetContentSummary(this IFileSystemOperations /// The ACL spec included in ACL creation operations in the format /// '[default:]user|group|other::r|-w|-x|-' /// - public static void SetAcl(this IFileSystemOperations operations, string accountName, string setAclFilePath, string aclspec) + public static void SetAcl(this IFileSystemOperations operations, string accountName, string path, string aclspec) { - operations.SetAclAsync(accountName, setAclFilePath, aclspec).GetAwaiter().GetResult(); + operations.SetAclAsync(accountName, path, aclspec).GetAwaiter().GetResult(); } /// @@ -866,7 +866,7 @@ public static void SetAcl(this IFileSystemOperations operations, string accountN /// /// The Azure Data Lake Store account to execute filesystem operations on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the file or directory on /// which to set the ACL. /// @@ -877,9 +877,9 @@ public static void SetAcl(this IFileSystemOperations operations, string accountN /// /// The cancellation token. /// - public static async Task SetAclAsync(this IFileSystemOperations operations, string accountName, string setAclFilePath, string aclspec, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task SetAclAsync(this IFileSystemOperations operations, string accountName, string path, string aclspec, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.SetAclWithHttpMessagesAsync(accountName, setAclFilePath, aclspec, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.SetAclWithHttpMessagesAsync(accountName, path, aclspec, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -891,7 +891,7 @@ public static void SetAcl(this IFileSystemOperations operations, string accountN /// /// The Azure Data Lake Store account to execute filesystem operations on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the file or directory with /// the ACL being modified. /// @@ -899,9 +899,9 @@ public static void SetAcl(this IFileSystemOperations operations, string accountN /// The ACL specification included in ACL modification operations in the format /// '[default:]user|group|other::r|-w|-x|-' /// - public static void ModifyAclEntries(this IFileSystemOperations operations, string accountName, string modifyAclFilePath, string aclspec) + public static void ModifyAclEntries(this IFileSystemOperations operations, string accountName, string path, string aclspec) { - operations.ModifyAclEntriesAsync(accountName, modifyAclFilePath, aclspec).GetAwaiter().GetResult(); + operations.ModifyAclEntriesAsync(accountName, path, aclspec).GetAwaiter().GetResult(); } /// @@ -913,7 +913,7 @@ public static void ModifyAclEntries(this IFileSystemOperations operations, strin /// /// The Azure Data Lake Store account to execute filesystem operations on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the file or directory with /// the ACL being modified. /// @@ -924,9 +924,9 @@ public static void ModifyAclEntries(this IFileSystemOperations operations, strin /// /// The cancellation token. /// - public static async Task ModifyAclEntriesAsync(this IFileSystemOperations operations, string accountName, string modifyAclFilePath, string aclspec, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ModifyAclEntriesAsync(this IFileSystemOperations operations, string accountName, string path, string aclspec, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.ModifyAclEntriesWithHttpMessagesAsync(accountName, modifyAclFilePath, aclspec, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.ModifyAclEntriesWithHttpMessagesAsync(accountName, path, aclspec, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -938,7 +938,7 @@ public static void ModifyAclEntries(this IFileSystemOperations operations, strin /// /// The Azure Data Lake Store account to execute filesystem operations on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the file or directory with /// the ACL being removed. /// @@ -946,9 +946,9 @@ public static void ModifyAclEntries(this IFileSystemOperations operations, strin /// The ACL spec included in ACL removal operations in the format /// '[default:]user|group|other' /// - public static void RemoveAclEntries(this IFileSystemOperations operations, string accountName, string removeAclFilePath, string aclspec) + public static void RemoveAclEntries(this IFileSystemOperations operations, string accountName, string path, string aclspec) { - operations.RemoveAclEntriesAsync(accountName, removeAclFilePath, aclspec).GetAwaiter().GetResult(); + operations.RemoveAclEntriesAsync(accountName, path, aclspec).GetAwaiter().GetResult(); } /// @@ -960,7 +960,7 @@ public static void RemoveAclEntries(this IFileSystemOperations operations, strin /// /// The Azure Data Lake Store account to execute filesystem operations on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the file or directory with /// the ACL being removed. /// @@ -971,9 +971,9 @@ public static void RemoveAclEntries(this IFileSystemOperations operations, strin /// /// The cancellation token. /// - public static async Task RemoveAclEntriesAsync(this IFileSystemOperations operations, string accountName, string removeAclFilePath, string aclspec, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task RemoveAclEntriesAsync(this IFileSystemOperations operations, string accountName, string path, string aclspec, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.RemoveAclEntriesWithHttpMessagesAsync(accountName, removeAclFilePath, aclspec, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.RemoveAclEntriesWithHttpMessagesAsync(accountName, path, aclspec, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -986,13 +986,13 @@ public static void RemoveAclEntries(this IFileSystemOperations operations, strin /// /// The Azure Data Lake Store account to execute filesystem operations on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the directory with the /// default ACL being removed. /// - public static void RemoveDefaultAcl(this IFileSystemOperations operations, string accountName, string defaultAclFilePath) + public static void RemoveDefaultAcl(this IFileSystemOperations operations, string accountName, string path) { - operations.RemoveDefaultAclAsync(accountName, defaultAclFilePath).GetAwaiter().GetResult(); + operations.RemoveDefaultAclAsync(accountName, path).GetAwaiter().GetResult(); } /// @@ -1005,16 +1005,16 @@ public static void RemoveDefaultAcl(this IFileSystemOperations operations, strin /// /// The Azure Data Lake Store account to execute filesystem operations on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the directory with the /// default ACL being removed. /// /// /// The cancellation token. /// - public static async Task RemoveDefaultAclAsync(this IFileSystemOperations operations, string accountName, string defaultAclFilePath, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task RemoveDefaultAclAsync(this IFileSystemOperations operations, string accountName, string path, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.RemoveDefaultAclWithHttpMessagesAsync(accountName, defaultAclFilePath, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.RemoveDefaultAclWithHttpMessagesAsync(accountName, path, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -1027,13 +1027,13 @@ public static void RemoveDefaultAcl(this IFileSystemOperations operations, strin /// /// The Azure Data Lake Store account to execute filesystem operations on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the file or directory with /// the ACL being removed. /// - public static void RemoveAcl(this IFileSystemOperations operations, string accountName, string aclFilePath) + public static void RemoveAcl(this IFileSystemOperations operations, string accountName, string path) { - operations.RemoveAclAsync(accountName, aclFilePath).GetAwaiter().GetResult(); + operations.RemoveAclAsync(accountName, path).GetAwaiter().GetResult(); } /// @@ -1046,16 +1046,16 @@ public static void RemoveAcl(this IFileSystemOperations operations, string accou /// /// The Azure Data Lake Store account to execute filesystem operations on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the file or directory with /// the ACL being removed. /// /// /// The cancellation token. /// - public static async Task RemoveAclAsync(this IFileSystemOperations operations, string accountName, string aclFilePath, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task RemoveAclAsync(this IFileSystemOperations operations, string accountName, string path, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.RemoveAclWithHttpMessagesAsync(accountName, aclFilePath, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.RemoveAclWithHttpMessagesAsync(accountName, path, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -1067,7 +1067,7 @@ public static void RemoveAcl(this IFileSystemOperations operations, string accou /// /// The Azure Data Lake Store account to execute filesystem operations on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the file or directory for /// which to get the ACL. /// @@ -1076,9 +1076,9 @@ public static void RemoveAcl(this IFileSystemOperations operations, string accou /// 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?)) + public static AclStatusResult GetAclStatus(this IFileSystemOperations operations, string accountName, string path, bool? tooId = default(bool?)) { - return operations.GetAclStatusAsync(accountName, aclFilePath, tooId).GetAwaiter().GetResult(); + return operations.GetAclStatusAsync(accountName, path, tooId).GetAwaiter().GetResult(); } /// @@ -1090,7 +1090,7 @@ public static void RemoveAcl(this IFileSystemOperations operations, string accou /// /// The Azure Data Lake Store account to execute filesystem operations on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the file or directory for /// which to get the ACL. /// @@ -1102,9 +1102,9 @@ public static void RemoveAcl(this IFileSystemOperations operations, string accou /// /// The cancellation token. /// - public static async Task GetAclStatusAsync(this IFileSystemOperations operations, string accountName, string aclFilePath, bool? tooId = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAclStatusAsync(this IFileSystemOperations operations, string accountName, string path, bool? tooId = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetAclStatusWithHttpMessagesAsync(accountName, aclFilePath, tooId, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetAclStatusWithHttpMessagesAsync(accountName, path, tooId, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -1119,16 +1119,16 @@ public static void RemoveAcl(this IFileSystemOperations operations, string accou /// /// The Azure Data Lake Store account to execute filesystem operations on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the file or directory to /// delete. /// /// /// The optional switch indicating if the delete should be recursive /// - public static FileOperationResult Delete(this IFileSystemOperations operations, string accountName, string filePath, bool? recursive = default(bool?)) + public static FileOperationResult Delete(this IFileSystemOperations operations, string accountName, string path, bool? recursive = default(bool?)) { - return operations.DeleteAsync(accountName, filePath, recursive).GetAwaiter().GetResult(); + return operations.DeleteAsync(accountName, path, recursive).GetAwaiter().GetResult(); } /// @@ -1140,7 +1140,7 @@ public static void RemoveAcl(this IFileSystemOperations operations, string accou /// /// The Azure Data Lake Store account to execute filesystem operations on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the file or directory to /// delete. /// @@ -1150,9 +1150,9 @@ public static void RemoveAcl(this IFileSystemOperations operations, string accou /// /// The cancellation token. /// - public static async Task DeleteAsync(this IFileSystemOperations operations, string accountName, string filePath, bool? recursive = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteAsync(this IFileSystemOperations operations, string accountName, string path, bool? recursive = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteWithHttpMessagesAsync(accountName, filePath, recursive, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteWithHttpMessagesAsync(accountName, path, recursive, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -1167,16 +1167,16 @@ public static void RemoveAcl(this IFileSystemOperations operations, string accou /// /// The Azure Data Lake Store account to execute filesystem operations on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the file or directory to /// move/rename. /// /// /// The path to move/rename the file or folder to /// - public static FileOperationResult Rename(this IFileSystemOperations operations, string accountName, string renameFilePath, string destination) + public static FileOperationResult Rename(this IFileSystemOperations operations, string accountName, string path, string destination) { - return operations.RenameAsync(accountName, renameFilePath, destination).GetAwaiter().GetResult(); + return operations.RenameAsync(accountName, path, destination).GetAwaiter().GetResult(); } /// @@ -1188,7 +1188,7 @@ public static FileOperationResult Rename(this IFileSystemOperations operations, /// /// The Azure Data Lake Store account to execute filesystem operations on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the file or directory to /// move/rename. /// @@ -1198,9 +1198,9 @@ public static FileOperationResult Rename(this IFileSystemOperations operations, /// /// The cancellation token. /// - public static async Task RenameAsync(this IFileSystemOperations operations, string accountName, string renameFilePath, string destination, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task RenameAsync(this IFileSystemOperations operations, string accountName, string path, string destination, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.RenameWithHttpMessagesAsync(accountName, renameFilePath, destination, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.RenameWithHttpMessagesAsync(accountName, path, destination, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -1215,7 +1215,7 @@ public static FileOperationResult Rename(this IFileSystemOperations operations, /// /// The Azure Data Lake Store account to execute filesystem operations on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the file or directory for /// which to set the owner. /// @@ -1227,9 +1227,9 @@ public static FileOperationResult Rename(this IFileSystemOperations operations, /// The AAD Object ID of the group owner of the file or directory. If empty, /// the property will remain unchanged. /// - public static void SetOwner(this IFileSystemOperations operations, string accountName, string setOwnerFilePath, string owner = default(string), string group = default(string)) + public static void SetOwner(this IFileSystemOperations operations, string accountName, string path, string owner = default(string), string group = default(string)) { - operations.SetOwnerAsync(accountName, setOwnerFilePath, owner, group).GetAwaiter().GetResult(); + operations.SetOwnerAsync(accountName, path, owner, group).GetAwaiter().GetResult(); } /// @@ -1241,7 +1241,7 @@ public static FileOperationResult Rename(this IFileSystemOperations operations, /// /// The Azure Data Lake Store account to execute filesystem operations on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the file or directory for /// which to set the owner. /// @@ -1256,9 +1256,9 @@ public static FileOperationResult Rename(this IFileSystemOperations operations, /// /// The cancellation token. /// - public static async Task SetOwnerAsync(this IFileSystemOperations operations, string accountName, string setOwnerFilePath, string owner = default(string), string group = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task SetOwnerAsync(this IFileSystemOperations operations, string accountName, string path, string owner = default(string), string group = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.SetOwnerWithHttpMessagesAsync(accountName, setOwnerFilePath, owner, group, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.SetOwnerWithHttpMessagesAsync(accountName, path, owner, group, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -1270,7 +1270,7 @@ public static FileOperationResult Rename(this IFileSystemOperations operations, /// /// The Azure Data Lake Store account to execute filesystem operations on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the file or directory for /// which to set the permission. /// @@ -1278,9 +1278,9 @@ public static FileOperationResult Rename(this IFileSystemOperations operations, /// A string representation of the permission (i.e 'rwx'). If empty, this /// property remains unchanged. /// - public static void SetPermission(this IFileSystemOperations operations, string accountName, string setPermissionFilePath, string permission = default(string)) + public static void SetPermission(this IFileSystemOperations operations, string accountName, string path, string permission = default(string)) { - operations.SetPermissionAsync(accountName, setPermissionFilePath, permission).GetAwaiter().GetResult(); + operations.SetPermissionAsync(accountName, path, permission).GetAwaiter().GetResult(); } /// @@ -1292,7 +1292,7 @@ public static FileOperationResult Rename(this IFileSystemOperations operations, /// /// The Azure Data Lake Store account to execute filesystem operations on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the file or directory for /// which to set the permission. /// @@ -1303,9 +1303,9 @@ public static FileOperationResult Rename(this IFileSystemOperations operations, /// /// The cancellation token. /// - public static async Task SetPermissionAsync(this IFileSystemOperations operations, string accountName, string setPermissionFilePath, string permission = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task SetPermissionAsync(this IFileSystemOperations operations, string accountName, string path, string permission = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.SetPermissionWithHttpMessagesAsync(accountName, setPermissionFilePath, permission, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.SetPermissionWithHttpMessagesAsync(accountName, path, permission, null, cancellationToken).ConfigureAwait(false)).Dispose(); } } diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/FirewallRulesOperations.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/FirewallRulesOperations.cs index 4b3f5261f84f..921effc28418 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/FirewallRulesOperations.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/FirewallRulesOperations.cs @@ -2,7 +2,7 @@ // Licensed 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 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/FirewallRulesOperationsExtensions.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/FirewallRulesOperationsExtensions.cs index 9e2df8799b99..395b5d44fbd8 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/FirewallRulesOperationsExtensions.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/FirewallRulesOperationsExtensions.cs @@ -2,7 +2,7 @@ // Licensed 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 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/IAccountOperations.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/IAccountOperations.cs index 1d247ae84b80..5f81a8a1df3f 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/IAccountOperations.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/IAccountOperations.cs @@ -2,7 +2,7 @@ // Licensed 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 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -194,7 +194,7 @@ public partial interface IAccountOperations /// /// 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)); + Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Lists the Data Lake Store accounts within the subscription. The /// response includes a link to the next page of results, if any. @@ -227,7 +227,7 @@ public partial interface IAccountOperations /// /// 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)); + Task>> ListWithHttpMessagesAsync(ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Creates the specified Data Lake Store account. /// @@ -332,7 +332,7 @@ public partial interface IAccountOperations /// /// Thrown when a required parameter is null /// - Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Lists the Data Lake Store accounts within the subscription. The /// response includes a link to the next page of results, if any. @@ -355,6 +355,6 @@ public partial interface IAccountOperations /// /// Thrown when a required parameter is null /// - Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/IDataLakeStoreAccountManagementClient.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/IDataLakeStoreAccountManagementClient.cs index d96696944a30..5d07d7e2c60c 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/IDataLakeStoreAccountManagementClient.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/IDataLakeStoreAccountManagementClient.cs @@ -2,7 +2,7 @@ // Licensed 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 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/IDataLakeStoreFileSystemManagementClient.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/IDataLakeStoreFileSystemManagementClient.cs index 8f72e357abff..ec73b75e63fb 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/IDataLakeStoreFileSystemManagementClient.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/IDataLakeStoreFileSystemManagementClient.cs @@ -2,7 +2,7 @@ // Licensed 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 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/IFileSystemOperations.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/IFileSystemOperations.cs index 20ee63fb961a..7aaaae91fc23 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/IFileSystemOperations.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/IFileSystemOperations.cs @@ -2,7 +2,7 @@ // Licensed 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 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -25,6 +25,48 @@ namespace Microsoft.Azure.Management.DataLake.Store /// public partial interface IFileSystemOperations { + /// + /// Sets or removes the expiration time on the specified file. This + /// operation can only be executed against files. Folders are not + /// supported. + /// + /// + /// The Azure Data Lake Store account to execute filesystem operations + /// on. + /// + /// + /// The Data Lake Store path (starting with '/') of the file on which + /// to set or remove the expiration time. + /// + /// + /// Indicates the type of expiration to use for the file: 1. + /// NeverExpire: ExpireTime is ignored. 2. RelativeToNow: ExpireTime is + /// an integer in milliseconds representing the expiration date + /// relative to when file expiration is updated. 3. + /// RelativeToCreationDate: ExpireTime is an integer in milliseconds + /// representing the expiration date relative to file creation. 4. + /// Absolute: ExpireTime is an integer in milliseconds, as a Unix + /// timestamp relative to 1/1/1970 00:00:00. Possible values include: + /// 'NeverExpire', 'RelativeToNow', 'RelativeToCreationDate', + /// 'Absolute' + /// + /// + /// The time that the file will expire, corresponding to the + /// ExpiryOption that was set. + /// + /// + /// 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 SetFileExpiryWithHttpMessagesAsync(string accountName, string path, ExpiryOptionType expiryOption, long? expireTime = default(long?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Appends to the specified file, optionally first creating the file /// if it does not yet exist. This method supports multiple concurrent @@ -40,7 +82,7 @@ public partial interface IFileSystemOperations /// The Azure Data Lake Store account to execute filesystem operations /// on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the file to which /// to append using concurrent append. /// @@ -76,49 +118,7 @@ public partial interface IFileSystemOperations /// /// Thrown when a required parameter is null /// - Task ConcurrentAppendWithHttpMessagesAsync(string accountName, string filePath, Stream streamContents, AppendModeType? appendMode = default(AppendModeType?), SyncFlag? syncFlag = default(SyncFlag?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Sets or removes the expiration time on the specified file. This - /// operation can only be executed against files. Folders are not - /// supported. - /// - /// - /// The Azure Data Lake Store account to execute filesystem operations - /// on. - /// - /// - /// The Data Lake Store path (starting with '/') of the file on which - /// to set or remove the expiration time. - /// - /// - /// Indicates the type of expiration to use for the file: 1. - /// NeverExpire: ExpireTime is ignored. 2. RelativeToNow: ExpireTime is - /// an integer in milliseconds representing the expiration date - /// relative to when file expiration is updated. 3. - /// RelativeToCreationDate: ExpireTime is an integer in milliseconds - /// representing the expiration date relative to file creation. 4. - /// Absolute: ExpireTime is an integer in milliseconds, as a Unix - /// timestamp relative to 1/1/1970 00:00:00. Possible values include: - /// 'NeverExpire', 'RelativeToNow', 'RelativeToCreationDate', - /// 'Absolute' - /// - /// - /// The time that the file will expire, corresponding to the - /// ExpiryOption that was set. - /// - /// - /// 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 SetFileExpiryWithHttpMessagesAsync(string accountName, string filePath, ExpiryOptionType expiryOption, long? expireTime = default(long?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task ConcurrentAppendWithHttpMessagesAsync(string accountName, string path, Stream streamContents, AppendModeType? appendMode = default(AppendModeType?), SyncFlag? syncFlag = default(SyncFlag?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Checks if the specified access is available at the given path. /// @@ -186,7 +186,7 @@ public partial interface IFileSystemOperations /// The Azure Data Lake Store account to execute filesystem operations /// on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the destination /// file resulting from the concatenation. /// @@ -207,7 +207,7 @@ public partial interface IFileSystemOperations /// /// Thrown when a required parameter is null /// - Task ConcatWithHttpMessagesAsync(string accountName, string destinationPath, IList sources, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task ConcatWithHttpMessagesAsync(string accountName, string path, IList sources, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Concatenates the list of source files into the destination file, /// deleting all source files upon success. This method accepts more @@ -219,7 +219,7 @@ public partial interface IFileSystemOperations /// The Azure Data Lake Store account to execute filesystem operations /// on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the destination /// file resulting from the concatenation. /// @@ -250,7 +250,7 @@ public partial interface IFileSystemOperations /// /// Thrown when a required parameter is null /// - Task MsConcatWithHttpMessagesAsync(string accountName, string msConcatDestinationPath, Stream streamContents, bool? deleteSourceDirectory = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task MsConcatWithHttpMessagesAsync(string accountName, string path, Stream streamContents, bool? deleteSourceDirectory = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Get the list of file status objects specified by the file path, /// with optional pagination parameters @@ -259,7 +259,7 @@ public partial interface IFileSystemOperations /// The Azure Data Lake Store account to execute filesystem operations /// on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the directory to /// list. /// @@ -298,7 +298,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), bool? tooId = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListFileStatusWithHttpMessagesAsync(string accountName, string path, 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. /// @@ -306,7 +306,7 @@ public partial interface IFileSystemOperations /// The Azure Data Lake Store account to execute filesystem operations /// on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the file for which /// to retrieve the summary. /// @@ -325,7 +325,7 @@ public partial interface IFileSystemOperations /// /// Thrown when a required parameter is null /// - Task> GetContentSummaryWithHttpMessagesAsync(string accountName, string getContentSummaryFilePath, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetContentSummaryWithHttpMessagesAsync(string accountName, string path, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Get the file status object specified by the file path. /// @@ -333,7 +333,7 @@ public partial interface IFileSystemOperations /// The Azure Data Lake Store account to execute filesystem operations /// on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the file or /// directory for which to retrieve the status. /// @@ -357,7 +357,45 @@ public partial interface IFileSystemOperations /// /// Thrown when a required parameter is null /// - Task> GetFileStatusWithHttpMessagesAsync(string accountName, string getFilePath, bool? tooId = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetFileStatusWithHttpMessagesAsync(string accountName, string path, bool? tooId = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Opens and reads from the specified file. + /// + /// + /// The Azure Data Lake Store account to execute filesystem operations + /// on. + /// + /// + /// The Data Lake Store path (starting with '/') of the file to open. + /// + /// + /// The number of bytes that the server will attempt to retrieve. It + /// will retrieve <= length bytes. + /// + /// + /// 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. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> OpenWithHttpMessagesAsync(string accountName, string path, long? length = default(long?), long? offset = default(long?), System.Guid? fileSessionId = default(System.Guid?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Used for serial appends to the specified file. NOTE: The target /// must not contain data added by ConcurrentAppend. ConcurrentAppend @@ -369,7 +407,7 @@ public partial interface IFileSystemOperations /// The Azure Data Lake Store account to execute filesystem operations /// on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the file to which /// to append. /// @@ -414,7 +452,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?), System.Guid? leaseId = default(System.Guid?), System.Guid? fileSessionId = default(System.Guid?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task AppendWithHttpMessagesAsync(string accountName, string path, 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 @@ -424,7 +462,7 @@ public partial interface IFileSystemOperations /// The Azure Data Lake Store account to execute filesystem operations /// on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the file to create. /// /// @@ -468,45 +506,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?), System.Guid? leaseId = default(System.Guid?), int? permission = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Opens and reads from the specified file. - /// - /// - /// The Azure Data Lake Store account to execute filesystem operations - /// on. - /// - /// - /// The Data Lake Store path (starting with '/') of the file to open. - /// - /// - /// The number of bytes that the server will attempt to retrieve. It - /// will retrieve <= length bytes. - /// - /// - /// 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. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - 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)); + Task CreateWithHttpMessagesAsync(string accountName, string path, 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)); /// /// Sets the Access Control List (ACL) for a file or folder. /// @@ -514,7 +514,7 @@ public partial interface IFileSystemOperations /// The Azure Data Lake Store account to execute filesystem operations /// on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the file or /// directory on which to set the ACL. /// @@ -534,7 +534,7 @@ public partial interface IFileSystemOperations /// /// Thrown when a required parameter is null /// - Task SetAclWithHttpMessagesAsync(string accountName, string setAclFilePath, string aclspec, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task SetAclWithHttpMessagesAsync(string accountName, string path, string aclspec, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Modifies existing Access Control List (ACL) entries on a file or /// folder. @@ -543,7 +543,7 @@ public partial interface IFileSystemOperations /// The Azure Data Lake Store account to execute filesystem operations /// on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the file or /// directory with the ACL being modified. /// @@ -563,7 +563,7 @@ public partial interface IFileSystemOperations /// /// Thrown when a required parameter is null /// - Task ModifyAclEntriesWithHttpMessagesAsync(string accountName, string modifyAclFilePath, string aclspec, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task ModifyAclEntriesWithHttpMessagesAsync(string accountName, string path, string aclspec, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Removes existing Access Control List (ACL) entries for a file or /// folder. @@ -572,7 +572,7 @@ public partial interface IFileSystemOperations /// The Azure Data Lake Store account to execute filesystem operations /// on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the file or /// directory with the ACL being removed. /// @@ -592,7 +592,7 @@ public partial interface IFileSystemOperations /// /// Thrown when a required parameter is null /// - Task RemoveAclEntriesWithHttpMessagesAsync(string accountName, string removeAclFilePath, string aclspec, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task RemoveAclEntriesWithHttpMessagesAsync(string accountName, string path, string aclspec, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Removes the existing Default Access Control List (ACL) of the /// specified directory. @@ -601,7 +601,7 @@ public partial interface IFileSystemOperations /// The Azure Data Lake Store account to execute filesystem operations /// on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the directory with /// the default ACL being removed. /// @@ -617,7 +617,7 @@ public partial interface IFileSystemOperations /// /// Thrown when a required parameter is null /// - Task RemoveDefaultAclWithHttpMessagesAsync(string accountName, string defaultAclFilePath, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task RemoveDefaultAclWithHttpMessagesAsync(string accountName, string path, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Removes the existing Access Control List (ACL) of the specified /// file or directory. @@ -626,7 +626,7 @@ public partial interface IFileSystemOperations /// The Azure Data Lake Store account to execute filesystem operations /// on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the file or /// directory with the ACL being removed. /// @@ -642,7 +642,7 @@ public partial interface IFileSystemOperations /// /// Thrown when a required parameter is null /// - Task RemoveAclWithHttpMessagesAsync(string accountName, string aclFilePath, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task RemoveAclWithHttpMessagesAsync(string accountName, string path, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets Access Control List (ACL) entries for the specified file or /// directory. @@ -651,7 +651,7 @@ public partial interface IFileSystemOperations /// The Azure Data Lake Store account to execute filesystem operations /// on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the file or /// directory for which to get the ACL. /// @@ -675,7 +675,7 @@ public partial interface IFileSystemOperations /// /// Thrown when a required parameter is null /// - Task> GetAclStatusWithHttpMessagesAsync(string accountName, string aclFilePath, bool? tooId = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetAclStatusWithHttpMessagesAsync(string accountName, string path, bool? tooId = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Deletes the requested file or directory, optionally recursively. /// @@ -683,7 +683,7 @@ public partial interface IFileSystemOperations /// The Azure Data Lake Store account to execute filesystem operations /// on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the file or /// directory to delete. /// @@ -705,7 +705,7 @@ public partial interface IFileSystemOperations /// /// Thrown when a required parameter is null /// - Task> DeleteWithHttpMessagesAsync(string accountName, string filePath, bool? recursive = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteWithHttpMessagesAsync(string accountName, string path, bool? recursive = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Rename a file or directory. /// @@ -713,7 +713,7 @@ public partial interface IFileSystemOperations /// The Azure Data Lake Store account to execute filesystem operations /// on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the file or /// directory to move/rename. /// @@ -735,7 +735,7 @@ public partial interface IFileSystemOperations /// /// Thrown when a required parameter is null /// - Task> RenameWithHttpMessagesAsync(string accountName, string renameFilePath, string destination, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> RenameWithHttpMessagesAsync(string accountName, string path, string destination, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Sets the owner of a file or directory. /// @@ -743,7 +743,7 @@ public partial interface IFileSystemOperations /// The Azure Data Lake Store account to execute filesystem operations /// on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the file or /// directory for which to set the owner. /// @@ -767,7 +767,7 @@ public partial interface IFileSystemOperations /// /// Thrown when a required parameter is null /// - Task SetOwnerWithHttpMessagesAsync(string accountName, string setOwnerFilePath, string owner = default(string), string group = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task SetOwnerWithHttpMessagesAsync(string accountName, string path, string owner = default(string), string group = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Sets the permission of the file or folder. /// @@ -775,7 +775,7 @@ public partial interface IFileSystemOperations /// The Azure Data Lake Store account to execute filesystem operations /// on. /// - /// + /// /// The Data Lake Store path (starting with '/') of the file or /// directory for which to set the permission. /// @@ -795,6 +795,6 @@ public partial interface IFileSystemOperations /// /// Thrown when a required parameter is null /// - Task SetPermissionWithHttpMessagesAsync(string accountName, string setPermissionFilePath, string permission = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task SetPermissionWithHttpMessagesAsync(string accountName, string path, string permission = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/IFirewallRulesOperations.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/IFirewallRulesOperations.cs index b769ea835717..d5542d7f4a41 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/IFirewallRulesOperations.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/IFirewallRulesOperations.cs @@ -2,7 +2,7 @@ // Licensed 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 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/ITrustedIdProvidersOperations.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/ITrustedIdProvidersOperations.cs index 554eb7134a26..c94d81ced63e 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/ITrustedIdProvidersOperations.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/ITrustedIdProvidersOperations.cs @@ -2,7 +2,7 @@ // Licensed 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 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AclStatus.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AclStatus.cs index 0779c3e15866..6f84da71bd70 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AclStatus.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AclStatus.cs @@ -2,7 +2,7 @@ // Licensed 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 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AclStatusResult.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AclStatusResult.cs index e226d0674a0b..61e5f4884e49 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AclStatusResult.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AclStatusResult.cs @@ -2,7 +2,7 @@ // Licensed 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 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AdlsAccessControlException.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AdlsAccessControlException.cs index f0a99bc0782a..d276ea59ea37 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AdlsAccessControlException.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AdlsAccessControlException.cs @@ -2,7 +2,7 @@ // Licensed 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 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AdlsBadOffsetException.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AdlsBadOffsetException.cs index 337665854c7e..cab203b3931f 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AdlsBadOffsetException.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AdlsBadOffsetException.cs @@ -2,7 +2,7 @@ // Licensed 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 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AdlsError.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AdlsError.cs index 5fa550c58061..f67dc4070e3e 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AdlsError.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AdlsError.cs @@ -2,7 +2,7 @@ // Licensed 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 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AdlsErrorException.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AdlsErrorException.cs index 202f90de2e9f..78ceb6535514 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AdlsErrorException.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AdlsErrorException.cs @@ -2,7 +2,7 @@ // Licensed 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 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AdlsFileAlreadyExistsException.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AdlsFileAlreadyExistsException.cs index d4aaae8937e3..4a1dea1ed4ac 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AdlsFileAlreadyExistsException.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AdlsFileAlreadyExistsException.cs @@ -2,7 +2,7 @@ // Licensed 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 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AdlsFileNotFoundException.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AdlsFileNotFoundException.cs index d3e2044b5010..d92b6066e638 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AdlsFileNotFoundException.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AdlsFileNotFoundException.cs @@ -2,7 +2,7 @@ // Licensed 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 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AdlsIOException.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AdlsIOException.cs index 4c9e23764fbb..72c543e7e7cb 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AdlsIOException.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AdlsIOException.cs @@ -2,7 +2,7 @@ // Licensed 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 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AdlsIllegalArgumentException.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AdlsIllegalArgumentException.cs index 70d2d56cc2a1..0541d61a1b12 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AdlsIllegalArgumentException.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AdlsIllegalArgumentException.cs @@ -2,7 +2,7 @@ // Licensed 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 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AdlsRemoteException.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AdlsRemoteException.cs index 7e94e24a05e0..ccd1f814b89d 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AdlsRemoteException.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AdlsRemoteException.cs @@ -2,7 +2,7 @@ // Licensed 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 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AdlsRuntimeException.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AdlsRuntimeException.cs index fa54cfe166c9..a8a904af8327 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AdlsRuntimeException.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AdlsRuntimeException.cs @@ -2,7 +2,7 @@ // Licensed 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 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AdlsSecurityException.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AdlsSecurityException.cs index e10f5d78a4b9..7e46bf7df0d1 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AdlsSecurityException.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AdlsSecurityException.cs @@ -2,7 +2,7 @@ // Licensed 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 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AdlsThrottledException.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AdlsThrottledException.cs index 94fe75569886..6ad8a09fa7ba 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AdlsThrottledException.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AdlsThrottledException.cs @@ -2,7 +2,7 @@ // Licensed 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 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AdlsUnsupportedOperationException.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AdlsUnsupportedOperationException.cs index a766ec07bc6d..63413d1a3ff5 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AdlsUnsupportedOperationException.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AdlsUnsupportedOperationException.cs @@ -2,7 +2,7 @@ // Licensed 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 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AppendModeType.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AppendModeType.cs index 10a73a5c0a7f..1c110e68b0bb 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AppendModeType.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/AppendModeType.cs @@ -2,7 +2,7 @@ // Licensed 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 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -26,4 +26,29 @@ public enum AppendModeType [EnumMember(Value = "autocreate")] Autocreate } + internal static class AppendModeTypeEnumExtension + { + internal static string ToSerializedValue(this AppendModeType? value) => + value == null ? null : ((AppendModeType)value).ToSerializedValue(); + + internal static string ToSerializedValue(this AppendModeType value) + { + switch( value ) + { + case AppendModeType.Autocreate: + return "autocreate"; + } + return null; + } + + internal static AppendModeType? ParseAppendModeType(this string value) + { + switch( value ) + { + case "autocreate": + return AppendModeType.Autocreate; + } + return null; + } + } } diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/ContentSummary.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/ContentSummary.cs index 3c0d5844c991..445677d8dcc7 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/ContentSummary.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/ContentSummary.cs @@ -2,7 +2,7 @@ // Licensed 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 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/ContentSummaryResult.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/ContentSummaryResult.cs index 82cbaf375a28..be8b86c720d3 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/ContentSummaryResult.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/ContentSummaryResult.cs @@ -2,7 +2,7 @@ // Licensed 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 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/DataLakeStoreAccount.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/DataLakeStoreAccount.cs index d4c018aec081..b596d820c1ec 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/DataLakeStoreAccount.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/DataLakeStoreAccount.cs @@ -2,7 +2,7 @@ // Licensed 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 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -43,14 +43,19 @@ public DataLakeStoreAccount() /// Resource tags /// The Key Vault encryption identity, if /// any. - /// the status of the Data Lake Store - /// account while being provisioned. Possible values include: 'Failed', - /// 'Creating', 'Running', 'Succeeded', 'Patching', 'Suspending', - /// 'Resuming', 'Deleting', 'Deleted' - /// the status of the Data Lake Store account after - /// provisioning has completed. Possible values include: 'Active', - /// 'Suspended' + /// the provisioning status of the Data + /// Lake Store account. Possible values include: 'Failed', 'Creating', + /// 'Running', 'Succeeded', 'Patching', 'Suspending', 'Resuming', + /// 'Deleting', 'Deleted' + /// the state of the Data Lake Store account. + /// Possible values include: 'Active', 'Suspended' /// the account creation time. + /// the account last modified + /// time. + /// the full CName endpoint for this + /// account. + /// The unique identifier associated with this + /// Data Lake Store account. /// The current state of encryption for /// this Data Lake store account. Possible values include: 'Enabled', /// 'Disabled' @@ -69,9 +74,6 @@ public DataLakeStoreAccount() /// Possible values include: 'Enabled', 'Disabled' /// The list of trusted identity /// providers associated with this Data Lake store account. - /// the account last modified - /// time. - /// the gateway host. /// the default owner group for all new /// folders and files created in the Data Lake Store account. /// the commitment tier to use for next month. @@ -86,13 +88,16 @@ public DataLakeStoreAccount() /// or disallowing IPs originating within Azure through the firewall. /// If the firewall is disabled, this is not enforced. Possible values /// include: 'Enabled', 'Disabled' - public DataLakeStoreAccount(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), EncryptionIdentity identity = default(EncryptionIdentity), DataLakeStoreAccountStatus? provisioningState = default(DataLakeStoreAccountStatus?), DataLakeStoreAccountState? state = default(DataLakeStoreAccountState?), System.DateTime? creationTime = default(System.DateTime?), EncryptionState? encryptionState = default(EncryptionState?), EncryptionProvisioningState? encryptionProvisioningState = default(EncryptionProvisioningState?), EncryptionConfig encryptionConfig = default(EncryptionConfig), FirewallState? firewallState = default(FirewallState?), IList firewallRules = default(IList), TrustedIdProviderState? trustedIdProviderState = default(TrustedIdProviderState?), IList trustedIdProviders = default(IList), System.DateTime? lastModifiedTime = default(System.DateTime?), string endpoint = default(string), string defaultGroup = default(string), TierType? newTier = default(TierType?), TierType? currentTier = default(TierType?), FirewallAllowAzureIpsState? firewallAllowAzureIps = default(FirewallAllowAzureIpsState?)) + public DataLakeStoreAccount(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), EncryptionIdentity identity = default(EncryptionIdentity), DataLakeStoreAccountStatus? provisioningState = default(DataLakeStoreAccountStatus?), DataLakeStoreAccountState? state = default(DataLakeStoreAccountState?), System.DateTime? creationTime = default(System.DateTime?), System.DateTime? lastModifiedTime = default(System.DateTime?), string endpoint = default(string), System.Guid? accountId = default(System.Guid?), EncryptionState? encryptionState = default(EncryptionState?), EncryptionProvisioningState? encryptionProvisioningState = default(EncryptionProvisioningState?), EncryptionConfig encryptionConfig = default(EncryptionConfig), FirewallState? firewallState = default(FirewallState?), IList firewallRules = default(IList), TrustedIdProviderState? trustedIdProviderState = default(TrustedIdProviderState?), IList trustedIdProviders = default(IList), string defaultGroup = default(string), TierType? newTier = default(TierType?), TierType? currentTier = default(TierType?), FirewallAllowAzureIpsState? firewallAllowAzureIps = default(FirewallAllowAzureIpsState?)) : base(location, id, name, type, tags) { Identity = identity; ProvisioningState = provisioningState; State = state; CreationTime = creationTime; + LastModifiedTime = lastModifiedTime; + Endpoint = endpoint; + AccountId = accountId; EncryptionState = encryptionState; EncryptionProvisioningState = encryptionProvisioningState; EncryptionConfig = encryptionConfig; @@ -100,8 +105,6 @@ public DataLakeStoreAccount() FirewallRules = firewallRules; TrustedIdProviderState = trustedIdProviderState; TrustedIdProviders = trustedIdProviders; - LastModifiedTime = lastModifiedTime; - Endpoint = endpoint; DefaultGroup = defaultGroup; NewTier = newTier; CurrentTier = currentTier; @@ -121,17 +124,17 @@ public DataLakeStoreAccount() public EncryptionIdentity Identity { get; set; } /// - /// Gets the status of the Data Lake Store account while being - /// provisioned. Possible values include: 'Failed', 'Creating', - /// 'Running', 'Succeeded', 'Patching', 'Suspending', 'Resuming', - /// 'Deleting', 'Deleted' + /// Gets the provisioning status of the Data Lake Store account. + /// Possible values include: 'Failed', 'Creating', 'Running', + /// 'Succeeded', 'Patching', 'Suspending', 'Resuming', 'Deleting', + /// 'Deleted' /// [JsonProperty(PropertyName = "properties.provisioningState")] public DataLakeStoreAccountStatus? ProvisioningState { get; private set; } /// - /// Gets the status of the Data Lake Store account after provisioning - /// has completed. Possible values include: 'Active', 'Suspended' + /// Gets the state of the Data Lake Store account. Possible values + /// include: 'Active', 'Suspended' /// [JsonProperty(PropertyName = "properties.state")] public DataLakeStoreAccountState? State { get; private set; } @@ -142,6 +145,25 @@ public DataLakeStoreAccount() [JsonProperty(PropertyName = "properties.creationTime")] public System.DateTime? CreationTime { get; private set; } + /// + /// Gets the account last modified time. + /// + [JsonProperty(PropertyName = "properties.lastModifiedTime")] + public System.DateTime? LastModifiedTime { get; private set; } + + /// + /// Gets the full CName endpoint for this account. + /// + [JsonProperty(PropertyName = "properties.endpoint")] + public string Endpoint { get; private set; } + + /// + /// Gets the unique identifier associated with this Data Lake Store + /// account. + /// + [JsonProperty(PropertyName = "properties.accountId")] + public System.Guid? AccountId { get; private set; } + /// /// Gets or sets the current state of encryption for this Data Lake /// store account. Possible values include: 'Enabled', 'Disabled' @@ -193,18 +215,6 @@ public DataLakeStoreAccount() [JsonProperty(PropertyName = "properties.trustedIdProviders")] public IList TrustedIdProviders { get; set; } - /// - /// Gets the account last modified time. - /// - [JsonProperty(PropertyName = "properties.lastModifiedTime")] - public System.DateTime? LastModifiedTime { get; private set; } - - /// - /// Gets the gateway host. - /// - [JsonProperty(PropertyName = "properties.endpoint")] - public string Endpoint { get; private set; } - /// /// Gets or sets the default owner group for all new folders and files /// created in the Data Lake Store account. diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/DataLakeStoreAccountBasic.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/DataLakeStoreAccountBasic.cs new file mode 100644 index 000000000000..dfb2d7858770 --- /dev/null +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/DataLakeStoreAccountBasic.cs @@ -0,0 +1,126 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.DataLake.Store.Models +{ + 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 System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Basic Data Lake Store account information, returned on list calls. + /// + [Rest.Serialization.JsonTransformation] + public partial class DataLakeStoreAccountBasic : Resource + { + /// + /// Initializes a new instance of the DataLakeStoreAccountBasic class. + /// + public DataLakeStoreAccountBasic() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the DataLakeStoreAccountBasic class. + /// + /// Resource location + /// Resource Id + /// Resource name + /// Resource type + /// Resource tags + /// the provisioning status of the Data + /// Lake Store account. Possible values include: 'Failed', 'Creating', + /// 'Running', 'Succeeded', 'Patching', 'Suspending', 'Resuming', + /// 'Deleting', 'Deleted' + /// the state of the Data Lake Store account. + /// Possible values include: 'Active', 'Suspended' + /// the account creation time. + /// the account last modified + /// time. + /// the full CName endpoint for this + /// account. + /// The unique identifier associated with this + /// Data Lake Store account. + public DataLakeStoreAccountBasic(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), DataLakeStoreAccountStatus? provisioningState = default(DataLakeStoreAccountStatus?), DataLakeStoreAccountState? state = default(DataLakeStoreAccountState?), System.DateTime? creationTime = default(System.DateTime?), System.DateTime? lastModifiedTime = default(System.DateTime?), string endpoint = default(string), System.Guid? accountId = default(System.Guid?)) + : base(location, id, name, type, tags) + { + ProvisioningState = provisioningState; + State = state; + CreationTime = creationTime; + LastModifiedTime = lastModifiedTime; + Endpoint = endpoint; + AccountId = accountId; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets the provisioning status of the Data Lake Store account. + /// Possible values include: 'Failed', 'Creating', 'Running', + /// 'Succeeded', 'Patching', 'Suspending', 'Resuming', 'Deleting', + /// 'Deleted' + /// + [JsonProperty(PropertyName = "properties.provisioningState")] + public DataLakeStoreAccountStatus? ProvisioningState { get; private set; } + + /// + /// Gets the state of the Data Lake Store account. Possible values + /// include: 'Active', 'Suspended' + /// + [JsonProperty(PropertyName = "properties.state")] + public DataLakeStoreAccountState? State { get; private set; } + + /// + /// Gets the account creation time. + /// + [JsonProperty(PropertyName = "properties.creationTime")] + public System.DateTime? CreationTime { get; private set; } + + /// + /// Gets the account last modified time. + /// + [JsonProperty(PropertyName = "properties.lastModifiedTime")] + public System.DateTime? LastModifiedTime { get; private set; } + + /// + /// Gets the full CName endpoint for this account. + /// + [JsonProperty(PropertyName = "properties.endpoint")] + public string Endpoint { get; private set; } + + /// + /// Gets the unique identifier associated with this Data Lake Store + /// account. + /// + [JsonProperty(PropertyName = "properties.accountId")] + public System.Guid? AccountId { get; private set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public override void Validate() + { + base.Validate(); + } + } +} diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/DataLakeStoreAccountState.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/DataLakeStoreAccountState.cs index 60cba1935e41..784a92afda51 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/DataLakeStoreAccountState.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/DataLakeStoreAccountState.cs @@ -2,7 +2,7 @@ // Licensed 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 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -28,4 +28,33 @@ public enum DataLakeStoreAccountState [EnumMember(Value = "Suspended")] Suspended } + internal static class DataLakeStoreAccountStateEnumExtension + { + internal static string ToSerializedValue(this DataLakeStoreAccountState? value) => + value == null ? null : ((DataLakeStoreAccountState)value).ToSerializedValue(); + + internal static string ToSerializedValue(this DataLakeStoreAccountState value) + { + switch( value ) + { + case DataLakeStoreAccountState.Active: + return "Active"; + case DataLakeStoreAccountState.Suspended: + return "Suspended"; + } + return null; + } + + internal static DataLakeStoreAccountState? ParseDataLakeStoreAccountState(this string value) + { + switch( value ) + { + case "Active": + return DataLakeStoreAccountState.Active; + case "Suspended": + return DataLakeStoreAccountState.Suspended; + } + return null; + } + } } diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/DataLakeStoreAccountStatus.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/DataLakeStoreAccountStatus.cs index 681797e54388..c0a6c773af3b 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/DataLakeStoreAccountStatus.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/DataLakeStoreAccountStatus.cs @@ -2,7 +2,7 @@ // Licensed 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 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -42,4 +42,61 @@ public enum DataLakeStoreAccountStatus [EnumMember(Value = "Deleted")] Deleted } + internal static class DataLakeStoreAccountStatusEnumExtension + { + internal static string ToSerializedValue(this DataLakeStoreAccountStatus? value) => + value == null ? null : ((DataLakeStoreAccountStatus)value).ToSerializedValue(); + + internal static string ToSerializedValue(this DataLakeStoreAccountStatus value) + { + switch( value ) + { + case DataLakeStoreAccountStatus.Failed: + return "Failed"; + case DataLakeStoreAccountStatus.Creating: + return "Creating"; + case DataLakeStoreAccountStatus.Running: + return "Running"; + case DataLakeStoreAccountStatus.Succeeded: + return "Succeeded"; + case DataLakeStoreAccountStatus.Patching: + return "Patching"; + case DataLakeStoreAccountStatus.Suspending: + return "Suspending"; + case DataLakeStoreAccountStatus.Resuming: + return "Resuming"; + case DataLakeStoreAccountStatus.Deleting: + return "Deleting"; + case DataLakeStoreAccountStatus.Deleted: + return "Deleted"; + } + return null; + } + + internal static DataLakeStoreAccountStatus? ParseDataLakeStoreAccountStatus(this string value) + { + switch( value ) + { + case "Failed": + return DataLakeStoreAccountStatus.Failed; + case "Creating": + return DataLakeStoreAccountStatus.Creating; + case "Running": + return DataLakeStoreAccountStatus.Running; + case "Succeeded": + return DataLakeStoreAccountStatus.Succeeded; + case "Patching": + return DataLakeStoreAccountStatus.Patching; + case "Suspending": + return DataLakeStoreAccountStatus.Suspending; + case "Resuming": + return DataLakeStoreAccountStatus.Resuming; + case "Deleting": + return DataLakeStoreAccountStatus.Deleting; + case "Deleted": + return DataLakeStoreAccountStatus.Deleted; + } + return null; + } + } } diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/DataLakeStoreAccountUpdateParameters.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/DataLakeStoreAccountUpdateParameters.cs index acbdf82f633e..b896dfa88ea0 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/DataLakeStoreAccountUpdateParameters.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/DataLakeStoreAccountUpdateParameters.cs @@ -2,7 +2,7 @@ // Licensed 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 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/EncryptionConfig.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/EncryptionConfig.cs index 2e811b735de7..248c24b315e8 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/EncryptionConfig.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/EncryptionConfig.cs @@ -2,7 +2,7 @@ // Licensed 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 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/EncryptionConfigType.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/EncryptionConfigType.cs index 9fad3c547332..409f2d753d08 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/EncryptionConfigType.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/EncryptionConfigType.cs @@ -2,7 +2,7 @@ // Licensed 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 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -28,4 +28,33 @@ public enum EncryptionConfigType [EnumMember(Value = "ServiceManaged")] ServiceManaged } + internal static class EncryptionConfigTypeEnumExtension + { + internal static string ToSerializedValue(this EncryptionConfigType? value) => + value == null ? null : ((EncryptionConfigType)value).ToSerializedValue(); + + internal static string ToSerializedValue(this EncryptionConfigType value) + { + switch( value ) + { + case EncryptionConfigType.UserManaged: + return "UserManaged"; + case EncryptionConfigType.ServiceManaged: + return "ServiceManaged"; + } + return null; + } + + internal static EncryptionConfigType? ParseEncryptionConfigType(this string value) + { + switch( value ) + { + case "UserManaged": + return EncryptionConfigType.UserManaged; + case "ServiceManaged": + return EncryptionConfigType.ServiceManaged; + } + return null; + } + } } diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/EncryptionIdentity.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/EncryptionIdentity.cs index e9c71417a1f5..2591be704599 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/EncryptionIdentity.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/EncryptionIdentity.cs @@ -2,7 +2,7 @@ // Licensed 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 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/EncryptionProvisioningState.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/EncryptionProvisioningState.cs index b8dccd3ee914..55d950778530 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/EncryptionProvisioningState.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/EncryptionProvisioningState.cs @@ -2,7 +2,7 @@ // Licensed 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 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -28,4 +28,33 @@ public enum EncryptionProvisioningState [EnumMember(Value = "Succeeded")] Succeeded } + internal static class EncryptionProvisioningStateEnumExtension + { + internal static string ToSerializedValue(this EncryptionProvisioningState? value) => + value == null ? null : ((EncryptionProvisioningState)value).ToSerializedValue(); + + internal static string ToSerializedValue(this EncryptionProvisioningState value) + { + switch( value ) + { + case EncryptionProvisioningState.Creating: + return "Creating"; + case EncryptionProvisioningState.Succeeded: + return "Succeeded"; + } + return null; + } + + internal static EncryptionProvisioningState? ParseEncryptionProvisioningState(this string value) + { + switch( value ) + { + case "Creating": + return EncryptionProvisioningState.Creating; + case "Succeeded": + return EncryptionProvisioningState.Succeeded; + } + return null; + } + } } diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/EncryptionState.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/EncryptionState.cs index e664ef153a95..b1df31ee58c8 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/EncryptionState.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/EncryptionState.cs @@ -2,7 +2,7 @@ // Licensed 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 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -28,4 +28,33 @@ public enum EncryptionState [EnumMember(Value = "Disabled")] Disabled } + internal static class EncryptionStateEnumExtension + { + internal static string ToSerializedValue(this EncryptionState? value) => + value == null ? null : ((EncryptionState)value).ToSerializedValue(); + + internal static string ToSerializedValue(this EncryptionState value) + { + switch( value ) + { + case EncryptionState.Enabled: + return "Enabled"; + case EncryptionState.Disabled: + return "Disabled"; + } + return null; + } + + internal static EncryptionState? ParseEncryptionState(this string value) + { + switch( value ) + { + case "Enabled": + return EncryptionState.Enabled; + case "Disabled": + return EncryptionState.Disabled; + } + return null; + } + } } diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/ErrorDetails.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/ErrorDetails.cs index 2127b2dccc1e..61b36705ec07 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/ErrorDetails.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/ErrorDetails.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/ExpiryOptionType.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/ExpiryOptionType.cs index 4d46f8ff69bf..ab45a7518b4b 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/ExpiryOptionType.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/ExpiryOptionType.cs @@ -2,7 +2,7 @@ // Licensed 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 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -32,4 +32,41 @@ public enum ExpiryOptionType [EnumMember(Value = "Absolute")] Absolute } + internal static class ExpiryOptionTypeEnumExtension + { + internal static string ToSerializedValue(this ExpiryOptionType? value) => + value == null ? null : ((ExpiryOptionType)value).ToSerializedValue(); + + internal static string ToSerializedValue(this ExpiryOptionType value) + { + switch( value ) + { + case ExpiryOptionType.NeverExpire: + return "NeverExpire"; + case ExpiryOptionType.RelativeToNow: + return "RelativeToNow"; + case ExpiryOptionType.RelativeToCreationDate: + return "RelativeToCreationDate"; + case ExpiryOptionType.Absolute: + return "Absolute"; + } + return null; + } + + internal static ExpiryOptionType? ParseExpiryOptionType(this string value) + { + switch( value ) + { + case "NeverExpire": + return ExpiryOptionType.NeverExpire; + case "RelativeToNow": + return ExpiryOptionType.RelativeToNow; + case "RelativeToCreationDate": + return ExpiryOptionType.RelativeToCreationDate; + case "Absolute": + return ExpiryOptionType.Absolute; + } + return null; + } + } } diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/FileOperationResult.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/FileOperationResult.cs index 8c53cfed36b1..a3ef92a46dd3 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/FileOperationResult.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/FileOperationResult.cs @@ -2,7 +2,7 @@ // Licensed 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 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/FileStatusProperties.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/FileStatusProperties.cs index d30db70dde65..ce1ead44f68d 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/FileStatusProperties.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/FileStatusProperties.cs @@ -2,7 +2,7 @@ // Licensed 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 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/FileStatusResult.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/FileStatusResult.cs index a81e6b514658..684a7dc72596 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/FileStatusResult.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/FileStatusResult.cs @@ -2,7 +2,7 @@ // Licensed 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 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/FileStatuses.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/FileStatuses.cs index 595a0d955c46..528c8e5487e9 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/FileStatuses.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/FileStatuses.cs @@ -2,7 +2,7 @@ // Licensed 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 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/FileStatusesResult.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/FileStatusesResult.cs index 1226ddd355d5..05e0104f712b 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/FileStatusesResult.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/FileStatusesResult.cs @@ -2,7 +2,7 @@ // Licensed 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 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/FileType.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/FileType.cs index 79d98c66b2b7..a002fa9fb968 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/FileType.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/FileType.cs @@ -2,7 +2,7 @@ // Licensed 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 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -28,4 +28,33 @@ public enum FileType [EnumMember(Value = "DIRECTORY")] DIRECTORY } + internal static class FileTypeEnumExtension + { + internal static string ToSerializedValue(this FileType? value) => + value == null ? null : ((FileType)value).ToSerializedValue(); + + internal static string ToSerializedValue(this FileType value) + { + switch( value ) + { + case FileType.FILE: + return "FILE"; + case FileType.DIRECTORY: + return "DIRECTORY"; + } + return null; + } + + internal static FileType? ParseFileType(this string value) + { + switch( value ) + { + case "FILE": + return FileType.FILE; + case "DIRECTORY": + return FileType.DIRECTORY; + } + return null; + } + } } diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/FirewallAllowAzureIpsState.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/FirewallAllowAzureIpsState.cs index 2ba241e66d62..961fb0023cd7 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/FirewallAllowAzureIpsState.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/FirewallAllowAzureIpsState.cs @@ -2,7 +2,7 @@ // Licensed 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 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -28,4 +28,33 @@ public enum FirewallAllowAzureIpsState [EnumMember(Value = "Disabled")] Disabled } + internal static class FirewallAllowAzureIpsStateEnumExtension + { + internal static string ToSerializedValue(this FirewallAllowAzureIpsState? value) => + value == null ? null : ((FirewallAllowAzureIpsState)value).ToSerializedValue(); + + internal static string ToSerializedValue(this FirewallAllowAzureIpsState value) + { + switch( value ) + { + case FirewallAllowAzureIpsState.Enabled: + return "Enabled"; + case FirewallAllowAzureIpsState.Disabled: + return "Disabled"; + } + return null; + } + + internal static FirewallAllowAzureIpsState? ParseFirewallAllowAzureIpsState(this string value) + { + switch( value ) + { + case "Enabled": + return FirewallAllowAzureIpsState.Enabled; + case "Disabled": + return FirewallAllowAzureIpsState.Disabled; + } + return null; + } + } } diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/FirewallRule.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/FirewallRule.cs index 2f7ee35faf1b..3551543e4da9 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/FirewallRule.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/FirewallRule.cs @@ -2,7 +2,7 @@ // Licensed 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 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/FirewallState.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/FirewallState.cs index 3e10a9ca3135..f92baaed0dcf 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/FirewallState.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/FirewallState.cs @@ -2,7 +2,7 @@ // Licensed 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 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -28,4 +28,33 @@ public enum FirewallState [EnumMember(Value = "Disabled")] Disabled } + internal static class FirewallStateEnumExtension + { + internal static string ToSerializedValue(this FirewallState? value) => + value == null ? null : ((FirewallState)value).ToSerializedValue(); + + internal static string ToSerializedValue(this FirewallState value) + { + switch( value ) + { + case FirewallState.Enabled: + return "Enabled"; + case FirewallState.Disabled: + return "Disabled"; + } + return null; + } + + internal static FirewallState? ParseFirewallState(this string value) + { + switch( value ) + { + case "Enabled": + return FirewallState.Enabled; + case "Disabled": + return FirewallState.Disabled; + } + return null; + } + } } diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/KeyVaultMetaInfo.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/KeyVaultMetaInfo.cs index 6fdd32a048fa..2b80ba215808 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/KeyVaultMetaInfo.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/KeyVaultMetaInfo.cs @@ -2,7 +2,7 @@ // Licensed 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 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/Page.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/Page.cs index bbd3e2469a2a..f6900516ada7 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/Page.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/Page.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/Resource.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/Resource.cs index 181dafcf7771..8cfa617b371d 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/Resource.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/Resource.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/SubResource.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/SubResource.cs index 6a4163ffe7c2..432022ede98b 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/SubResource.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/SubResource.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/SyncFlag.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/SyncFlag.cs index c8f9b802b373..54d5b13188b1 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/SyncFlag.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/SyncFlag.cs @@ -2,7 +2,7 @@ // Licensed 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 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -30,4 +30,37 @@ public enum SyncFlag [EnumMember(Value = "CLOSE")] CLOSE } + internal static class SyncFlagEnumExtension + { + internal static string ToSerializedValue(this SyncFlag? value) => + value == null ? null : ((SyncFlag)value).ToSerializedValue(); + + internal static string ToSerializedValue(this SyncFlag value) + { + switch( value ) + { + case SyncFlag.DATA: + return "DATA"; + case SyncFlag.METADATA: + return "METADATA"; + case SyncFlag.CLOSE: + return "CLOSE"; + } + return null; + } + + internal static SyncFlag? ParseSyncFlag(this string value) + { + switch( value ) + { + case "DATA": + return SyncFlag.DATA; + case "METADATA": + return SyncFlag.METADATA; + case "CLOSE": + return SyncFlag.CLOSE; + } + return null; + } + } } diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/TierType.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/TierType.cs index 77da6ab7a5d6..0111d4fbea58 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/TierType.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/TierType.cs @@ -2,7 +2,7 @@ // Licensed 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 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -38,4 +38,53 @@ public enum TierType [EnumMember(Value = "Commitment_5PB")] Commitment5PB } + internal static class TierTypeEnumExtension + { + internal static string ToSerializedValue(this TierType? value) => + value == null ? null : ((TierType)value).ToSerializedValue(); + + internal static string ToSerializedValue(this TierType value) + { + switch( value ) + { + case TierType.Consumption: + return "Consumption"; + case TierType.Commitment1TB: + return "Commitment_1TB"; + case TierType.Commitment10TB: + return "Commitment_10TB"; + case TierType.Commitment100TB: + return "Commitment_100TB"; + case TierType.Commitment500TB: + return "Commitment_500TB"; + case TierType.Commitment1PB: + return "Commitment_1PB"; + case TierType.Commitment5PB: + return "Commitment_5PB"; + } + return null; + } + + internal static TierType? ParseTierType(this string value) + { + switch( value ) + { + case "Consumption": + return TierType.Consumption; + case "Commitment_1TB": + return TierType.Commitment1TB; + case "Commitment_10TB": + return TierType.Commitment10TB; + case "Commitment_100TB": + return TierType.Commitment100TB; + case "Commitment_500TB": + return TierType.Commitment500TB; + case "Commitment_1PB": + return TierType.Commitment1PB; + case "Commitment_5PB": + return TierType.Commitment5PB; + } + return null; + } + } } diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/TrustedIdProvider.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/TrustedIdProvider.cs index 11cf94839dc9..773c6e361993 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/TrustedIdProvider.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/TrustedIdProvider.cs @@ -2,7 +2,7 @@ // Licensed 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 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/TrustedIdProviderState.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/TrustedIdProviderState.cs index 0bc4dfd1b0cb..f196b78ec5db 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/TrustedIdProviderState.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/TrustedIdProviderState.cs @@ -2,7 +2,7 @@ // Licensed 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 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -28,4 +28,33 @@ public enum TrustedIdProviderState [EnumMember(Value = "Disabled")] Disabled } + internal static class TrustedIdProviderStateEnumExtension + { + internal static string ToSerializedValue(this TrustedIdProviderState? value) => + value == null ? null : ((TrustedIdProviderState)value).ToSerializedValue(); + + internal static string ToSerializedValue(this TrustedIdProviderState value) + { + switch( value ) + { + case TrustedIdProviderState.Enabled: + return "Enabled"; + case TrustedIdProviderState.Disabled: + return "Disabled"; + } + return null; + } + + internal static TrustedIdProviderState? ParseTrustedIdProviderState(this string value) + { + switch( value ) + { + case "Enabled": + return TrustedIdProviderState.Enabled; + case "Disabled": + return TrustedIdProviderState.Disabled; + } + return null; + } + } } diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/UpdateEncryptionConfig.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/UpdateEncryptionConfig.cs index cbe59ba1b5ba..cce31ee8d506 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/UpdateEncryptionConfig.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/UpdateEncryptionConfig.cs @@ -2,7 +2,7 @@ // Licensed 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 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/UpdateFirewallRuleParameters.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/UpdateFirewallRuleParameters.cs index 87e4b670213f..346cf4f95683 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/UpdateFirewallRuleParameters.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/UpdateFirewallRuleParameters.cs @@ -2,7 +2,7 @@ // Licensed 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 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/UpdateKeyVaultMetaInfo.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/UpdateKeyVaultMetaInfo.cs index 07b20a093ddd..e5ccbfa112c6 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/UpdateKeyVaultMetaInfo.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/UpdateKeyVaultMetaInfo.cs @@ -2,7 +2,7 @@ // Licensed 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 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/UpdateTrustedIdProviderParameters.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/UpdateTrustedIdProviderParameters.cs index 5943afb8ea37..bb9d6aa3895a 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/UpdateTrustedIdProviderParameters.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/Models/UpdateTrustedIdProviderParameters.cs @@ -2,7 +2,7 @@ // Licensed 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 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/TrustedIdProvidersOperations.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/TrustedIdProvidersOperations.cs index ae9b2f35f94f..82257cc80400 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/TrustedIdProvidersOperations.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/TrustedIdProvidersOperations.cs @@ -2,7 +2,7 @@ // Licensed 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 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/TrustedIdProvidersOperationsExtensions.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/TrustedIdProvidersOperationsExtensions.cs index ea94575eaabc..b6ae325fba8e 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/TrustedIdProvidersOperationsExtensions.cs +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Generated/TrustedIdProvidersOperationsExtensions.cs @@ -2,7 +2,7 @@ // Licensed 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 +// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Microsoft.Azure.Management.DataLake.Store.csproj b/src/SDKs/DataLake.Store/Management.DataLake.Store/Microsoft.Azure.Management.DataLake.Store.csproj index 510db9f35493..63bce903bb6f 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Microsoft.Azure.Management.DataLake.Store.csproj +++ b/src/SDKs/DataLake.Store/Management.DataLake.Store/Microsoft.Azure.Management.DataLake.Store.csproj @@ -3,7 +3,7 @@ Microsoft.Azure.Management.DataLake.Store Provides Data Lake Store account and filesystem management capabilities for Microsoft Azure. - 2.2.1 + 2.3.0-preview Microsoft.Azure.Management.DataLake.Store Microsoft Azure Data Lake Store management;DataLakeStore;Data Lake Store management See https://aka.ms/adlsdotnetsdkchangelog for release notes. diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Properties/AssemblyInfo.cs b/src/SDKs/DataLake.Store/Management.DataLake.Store/Properties/AssemblyInfo.cs index d95e5abda5aa..42787215033e 100644 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Properties/AssemblyInfo.cs +++ b/src/SDKs/DataLake.Store/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.2.1.0")] +[assembly: AssemblyFileVersion("2.3.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyProduct("Azure .NET SDK")] diff --git a/src/SDKs/DataLake.Store/changelog.md b/src/SDKs/DataLake.Store/changelog.md index b6489c39ab55..e57cba083119 100644 --- a/src/SDKs/DataLake.Store/changelog.md +++ b/src/SDKs/DataLake.Store/changelog.md @@ -1,5 +1,10 @@ ## Microsoft.Azure.Management.DataLake.Store release notes +### Changes in 2.3.0-preview +- Create an inheritance structure for GET and LIST ADLS accounts. +- This also follows the Basic -> Object inheritance pattern. +- Standardized the parameter name for file paths (e.g. fileDestination to path) + ### Changes in 2.2.0 - Marking the 2.*.*-preview changes as stable for the second official release of the Data Lake Store SDK.