From cf773fc64ce0359885d14e3703b36b36b33bcc30 Mon Sep 17 00:00:00 2001 From: Dongwei Wang Date: Fri, 5 Apr 2019 00:36:05 +0800 Subject: [PATCH] [HDInsight] - Update configurations (#5683) --- .../ScenarioTests/ClusterOperationTests.cs | 48 ++ .../ConfigurationOperationTests.cs | 41 +- .../TestGetOrUpdateGatewaySettings.json} | 806 ++++++++++-------- .../TestGetConfigurations.json | 800 ++++++++--------- .../TestHelpers/CommonTestsFixture.cs | 4 +- .../HDInsightManagementTestUtilities.cs | 14 +- .../UnitTests/CustomizationTests.cs | 36 - ...ConfigurationsOperations.Customizations.cs | 6 +- ...ionsOperationsExtensions.Customizations.cs | 8 + .../Converters/ConfigurationsConverter.cs | 1 + ...ConfigurationsOperations.Customizations.cs | 4 + .../Models/HttpConnectivitySettings.cs | 1 + .../Generated/ClustersOperations.cs | 400 +++++++++ .../Generated/ClustersOperationsExtensions.cs | 126 +++ .../Generated/ConfigurationsOperations.cs | 203 ++++- .../ConfigurationsOperationsExtensions.cs | 64 +- .../Generated/IClustersOperations.cs | 75 ++ .../Generated/IConfigurationsOperations.cs | 43 +- .../Generated/Models/ClusterConfigurations.cs | 55 ++ .../Generated/Models/GatewaySettings.cs | 69 ++ .../Models/UpdateGatewaySettingsParameters.cs | 71 ++ .../SdkInfo_HDInsightManagementClient.cs | 2 +- .../Management.HDInsight.csproj | 4 +- .../Properties/AssemblyInfo.cs | 2 +- .../_metadata/hdinsight_resource-manager.txt | 4 +- 25 files changed, 1997 insertions(+), 890 deletions(-) rename src/SDKs/HDInsight/Management/Management.HDInsight.Tests/SessionRecords/{Management.HDInsight.Tests.ConfigurationOperationTests/TestHttpExtended.json => Management.HDInsight.Tests.ClusterOperationTests/TestGetOrUpdateGatewaySettings.json} (63%) create mode 100644 src/SDKs/HDInsight/Management/Management.HDInsight/Generated/Models/ClusterConfigurations.cs create mode 100644 src/SDKs/HDInsight/Management/Management.HDInsight/Generated/Models/GatewaySettings.cs create mode 100644 src/SDKs/HDInsight/Management/Management.HDInsight/Generated/Models/UpdateGatewaySettingsParameters.cs diff --git a/src/SDKs/HDInsight/Management/Management.HDInsight.Tests/ScenarioTests/ClusterOperationTests.cs b/src/SDKs/HDInsight/Management/Management.HDInsight.Tests/ScenarioTests/ClusterOperationTests.cs index 1f8282e8dd0a..5ea2a42caeea 100644 --- a/src/SDKs/HDInsight/Management/Management.HDInsight.Tests/ScenarioTests/ClusterOperationTests.cs +++ b/src/SDKs/HDInsight/Management/Management.HDInsight.Tests/ScenarioTests/ClusterOperationTests.cs @@ -476,5 +476,53 @@ public void TestResizeCluster() workerNode = cluster.Properties.ComputeProfile.Roles.First(role => role.Name == "workernode"); Assert.Equal(workerNodeParams.TargetInstanceCount.Value + 1, workerNode.TargetInstanceCount); } + + [Fact] + public void TestGetOrUpdateGatewaySettings() + { + TestInitialize(); + + string clusterName = TestUtilities.GenerateName("hdisdk-gateway"); + var createParams = CommonData.PrepareClusterCreateParamsForWasb(); + var cluster = HDInsightClient.Clusters.Create(CommonData.ResourceGroupName, clusterName, createParams); + ValidateCluster(clusterName, createParams, cluster); + + string expectedUserName = CommonData.ClusterUserName; + string expectedPassword = CommonData.ClusterPassword; + var gatewaySettings = HDInsightClient.Clusters.GetGatewaySettings(CommonData.ResourceGroupName, clusterName); + ValidateGatewaySettings(expectedUserName, expectedPassword, gatewaySettings); + + // Disable gateway settings is not allowed. + var updateParams = new UpdateGatewaySettingsParameters + { + IsCredentialEnabled = false + }; + + try + { + HDInsightClient.Clusters.UpdateGatewaySettings(CommonData.ResourceGroupName, clusterName, updateParams); + Assert.True(false, "Disable gateway settings should fail"); + } + catch(ErrorResponseException ex) + { + Assert.Equal(HttpStatusCode.MethodNotAllowed, ex.Response.StatusCode); + } + + // Make sure anything stay unchanged after attempting to disable gateway settings. + gatewaySettings = HDInsightClient.Clusters.GetGatewaySettings(CommonData.ResourceGroupName, clusterName); + ValidateGatewaySettings(expectedUserName, expectedPassword, gatewaySettings); + + string newExpectedPassword = "NewPassword1!"; + updateParams = new UpdateGatewaySettingsParameters + { + IsCredentialEnabled = true, + UserName = expectedUserName, + Password = newExpectedPassword + }; + + HDInsightClient.Clusters.UpdateGatewaySettings(CommonData.ResourceGroupName, clusterName, updateParams); + gatewaySettings = HDInsightClient.Clusters.GetGatewaySettings(CommonData.ResourceGroupName, clusterName); + ValidateGatewaySettings(expectedUserName, newExpectedPassword, gatewaySettings); + } } } diff --git a/src/SDKs/HDInsight/Management/Management.HDInsight.Tests/ScenarioTests/ConfigurationOperationTests.cs b/src/SDKs/HDInsight/Management/Management.HDInsight.Tests/ScenarioTests/ConfigurationOperationTests.cs index 24a93b1cd334..d54d8b1eb4ab 100644 --- a/src/SDKs/HDInsight/Management/Management.HDInsight.Tests/ScenarioTests/ConfigurationOperationTests.cs +++ b/src/SDKs/HDInsight/Management/Management.HDInsight.Tests/ScenarioTests/ConfigurationOperationTests.cs @@ -17,7 +17,7 @@ public void TestGetConfigurations() { TestInitialize(); - string clusterName = TestUtilities.GenerateName("hdisdk-humboldt"); + string clusterName = TestUtilities.GenerateName("hdisdk-configs"); var createParams = CommonData.PrepareClusterCreateParamsForWasb(); var hiveConfig = new Dictionary { @@ -54,41 +54,20 @@ public void TestGetConfigurations() var yarn = HDInsightClient.Configurations.Get(CommonData.ResourceGroupName, clusterName, ConfigurationKey.YarnSite); Assert.Equal(yarnConfig, yarn); - var gateway = HDInsightClient.Configurations.Get(CommonData.ResourceGroupName, clusterName, ConfigurationKey.Gateway); - Assert.Equal(3, gateway.Count); - var core = HDInsightClient.Configurations.Get(CommonData.ResourceGroupName, clusterName, ConfigurationKey.CoreSite); Assert.Equal(2, core.Count); Assert.True(core.ContainsKey(Constants.StorageConfigurations.DefaultFsKey)); Assert.Contains(core, c => c.Key.StartsWith("fs.azure.account.key.")); - } - [Fact] - public void TestHttpExtended() - { - TestInitialize(); - - string clusterName = TestUtilities.GenerateName("hdisdk-http"); - var createParams = CommonData.PrepareClusterCreateParamsForWasb(); - var cluster = HDInsightClient.Clusters.Create(CommonData.ResourceGroupName, clusterName, createParams); - ValidateCluster(clusterName, createParams, cluster); - - string expectedUserName = CommonData.ClusterUserName; - string expectedPassword = CommonData.ClusterPassword; - var httpSettings = HDInsightClient.Configurations.Get(CommonData.ResourceGroupName, clusterName, ConfigurationKey.Gateway); - ValidateHttpSettings(expectedUserName, expectedPassword, httpSettings); - - string newExpectedPassword = "NewPassword1!"; - var updateParams = new Dictionary - { - { "restAuthCredential.isEnabled", "true" }, - { "restAuthCredential.username", expectedUserName }, - { "restAuthCredential.password", newExpectedPassword } - }; - - HDInsightClient.Configurations.Update(CommonData.ResourceGroupName, clusterName, ConfigurationKey.Gateway, updateParams); - httpSettings = HDInsightClient.Configurations.Get(CommonData.ResourceGroupName, clusterName, ConfigurationKey.Gateway); - ValidateHttpSettings(expectedUserName, newExpectedPassword, httpSettings); + var configs = HDInsightClient.Configurations.List(CommonData.ResourceGroupName, clusterName); + Assert.NotNull(configs); + Assert.Equal(hiveConfig, configs.Configurations[ConfigurationKey.HiveSite]); + Assert.Equal(mapredConfig, configs.Configurations[ConfigurationKey.MapRedSite]); + Assert.Equal(yarnConfig, configs.Configurations[ConfigurationKey.YarnSite]); + Assert.Equal(configurations[ConfigurationKey.Gateway], configs.Configurations[ConfigurationKey.Gateway]); + Assert.Equal(2, core.Count); + Assert.True(core.ContainsKey(Constants.StorageConfigurations.DefaultFsKey)); + Assert.Contains(core, c => c.Key.StartsWith("fs.azure.account.key.")); } } } diff --git a/src/SDKs/HDInsight/Management/Management.HDInsight.Tests/SessionRecords/Management.HDInsight.Tests.ConfigurationOperationTests/TestHttpExtended.json b/src/SDKs/HDInsight/Management/Management.HDInsight.Tests/SessionRecords/Management.HDInsight.Tests.ClusterOperationTests/TestGetOrUpdateGatewaySettings.json similarity index 63% rename from src/SDKs/HDInsight/Management/Management.HDInsight.Tests/SessionRecords/Management.HDInsight.Tests.ConfigurationOperationTests/TestHttpExtended.json rename to src/SDKs/HDInsight/Management/Management.HDInsight.Tests/SessionRecords/Management.HDInsight.Tests.ClusterOperationTests/TestGetOrUpdateGatewaySettings.json index 4863b17b8251..968eaa385e51 100644 --- a/src/SDKs/HDInsight/Management/Management.HDInsight.Tests/SessionRecords/Management.HDInsight.Tests.ConfigurationOperationTests/TestHttpExtended.json +++ b/src/SDKs/HDInsight/Management/Management.HDInsight.Tests/SessionRecords/Management.HDInsight.Tests.ClusterOperationTests/TestGetOrUpdateGatewaySettings.json @@ -1,12 +1,12 @@ { "Entries": [ { - "RequestUri": "/subscriptions/7d441bdb-f39a-4ab3-8866-afb225cb9886/resourceGroups/hdicsharprg4220/providers/Microsoft.HDInsight/clusters/hdisdk-http1204?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/d262af65-f7b1-4b63-9c55-4058673d935e/resourceGroups/hdicsharprg5384/providers/Microsoft.HDInsight/clusters/hdisdk-gateway97?api-version=2018-06-01-preview", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6\",\r\n \"osType\": \"Linux\",\r\n \"tier\": \"Standard\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\",\r\n \"configurations\": {\r\n \"gateway\": {\r\n \"restAuthCredential.isEnabled\": \"true\",\r\n \"restAuthCredential.username\": \"admin5274\",\r\n \"restAuthCredential.password\": \"Password19322\"\r\n }\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Large\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5582\",\r\n \"password\": \"Password19917\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Large\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5582\",\r\n \"password\": \"Password19917\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Small\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5582\",\r\n \"password\": \"Password19917\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage5035.blob.core.windows.net\",\r\n \"isDefault\": true,\r\n \"container\": \"default9335\",\r\n \"key\": \"feCPx7Xfvu9/kHo8XuKbIq0CppCwph1/P0EjZY92EMHTxQywjWOPvWy5/T/7DapRcVl3FMt0ZfOo7tuVQm2YdQ==\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6\",\r\n \"osType\": \"Linux\",\r\n \"tier\": \"Standard\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\",\r\n \"configurations\": {\r\n \"gateway\": {\r\n \"restAuthCredential.isEnabled\": \"true\",\r\n \"restAuthCredential.username\": \"admin1131\",\r\n \"restAuthCredential.password\": \"Password1!48\"\r\n }\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Large\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser191\",\r\n \"password\": \"Password1!222\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Large\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser191\",\r\n \"password\": \"Password1!222\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Small\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser191\",\r\n \"password\": \"Password1!222\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage8722.blob.core.windows.net\",\r\n \"isDefault\": true,\r\n \"container\": \"default2395\",\r\n \"key\": \"SwwUQ/u3SOyGXIgivDu4W7QG63dkkFRTS/VtA9AJIlKH/ZJ0eFnqD+3xe1NTTdbWmtqWluvmGCPtKLvyuD8qPQ==\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "32427741-412e-4e44-9837-a3798e5c9436" + "d7d9bc59-07bd-4043-9aa3-5bd6fe4c23c1" ], "Accept-Language": [ "en-US" @@ -15,13 +15,13 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1888" + "1884" ] }, "ResponseHeaders": { @@ -32,22 +32,22 @@ "no-cache" ], "ETag": [ - "\"d35d4c04-6114-4721-9409-7c0855619632\"" + "\"e431950f-e606-4db6-ab78-2f90ca415728\"" ], "x-ms-hdi-clusteruri": [ - "https://management.azure.com/subscriptions/7d441bdb-f39a-4ab3-8866-afb225cb9886/resourceGroups/hdicsharprg4220/providers/Microsoft.HDInsight/clusters/hdisdk-http1204?api-version=2018-06-01-preview" + "https://management.azure.com/subscriptions/d262af65-f7b1-4b63-9c55-4058673d935e/resourceGroups/hdicsharprg5384/providers/Microsoft.HDInsight/clusters/hdisdk-gateway97?api-version=2018-06-01-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/7d441bdb-f39a-4ab3-8866-afb225cb9886/resourceGroups/hdicsharprg4220/providers/Microsoft.HDInsight/clusters/hdisdk-http1204/azureasyncoperations/create?api-version=2018-06-01-preview" + "https://management.azure.com:443/subscriptions/d262af65-f7b1-4b63-9c55-4058673d935e/resourceGroups/hdicsharprg5384/providers/Microsoft.HDInsight/clusters/hdisdk-gateway97/azureasyncoperations/create?api-version=2018-06-01-preview" ], "x-ms-request-id": [ - "131665dd-12d1-46d8-b9dd-b2561cf54b0d" + "1a3e8267-b42c-4d55-9345-9b7a790dcd00" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "37674ce1-03ed-4226-ba62-129ac4805884" + "df2eb917-996f-4f0d-a841-9320b5d0d49f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -56,13 +56,13 @@ "1199" ], "x-ms-routing-request-id": [ - "WESTUS2:20190125T133151Z:37674ce1-03ed-4226-ba62-129ac4805884" + "WESTUS2:20190219T101018Z:df2eb917-996f-4f0d-a841-9320b5d0d49f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Jan 2019 13:31:50 GMT" + "Tue, 19 Feb 2019 10:10:18 GMT" ], "Content-Length": [ "1250" @@ -74,11 +74,11 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7d441bdb-f39a-4ab3-8866-afb225cb9886/resourceGroups/hdicsharprg4220/providers/Microsoft.HDInsight/clusters/hdisdk-http1204\",\r\n \"name\": \"hdisdk-http1204\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"d35d4c04-6114-4721-9409-7c0855619632\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1901050618.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Large\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5582\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Large\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5582\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Medium\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5582\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2019-01-25T13:31:51.24\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"tier\": \"standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d262af65-f7b1-4b63-9c55-4058673d935e/resourceGroups/hdicsharprg5384/providers/Microsoft.HDInsight/clusters/hdisdk-gateway97\",\r\n \"name\": \"hdisdk-gateway97\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e431950f-e606-4db6-ab78-2f90ca415728\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1902132019.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Large\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser191\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Large\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser191\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Medium\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser191\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2019-02-19T10:10:17.543\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"tier\": \"standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7d441bdb-f39a-4ab3-8866-afb225cb9886/resourceGroups/hdicsharprg4220/providers/Microsoft.HDInsight/clusters/hdisdk-http1204/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/d262af65-f7b1-4b63-9c55-4058673d935e/resourceGroups/hdicsharprg5384/providers/Microsoft.HDInsight/clusters/hdisdk-gateway97/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -86,7 +86,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -97,13 +97,13 @@ "no-cache" ], "x-ms-request-id": [ - "498a7e2c-aaf1-45ea-92d3-437368ffed8d" + "cafe902e-1104-4790-9991-006d39d2c4c1" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "91ab2618-dd85-49ed-ae72-c6308fcf49b4" + "a89b31c7-47d6-47bd-8273-6258e6db6a32" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -112,13 +112,13 @@ "11999" ], "x-ms-routing-request-id": [ - "WESTUS2:20190125T133222Z:91ab2618-dd85-49ed-ae72-c6308fcf49b4" + "WESTUS2:20190219T101048Z:a89b31c7-47d6-47bd-8273-6258e6db6a32" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Jan 2019 13:32:22 GMT" + "Tue, 19 Feb 2019 10:10:48 GMT" ], "Content-Length": [ "23" @@ -134,7 +134,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7d441bdb-f39a-4ab3-8866-afb225cb9886/resourceGroups/hdicsharprg4220/providers/Microsoft.HDInsight/clusters/hdisdk-http1204/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/d262af65-f7b1-4b63-9c55-4058673d935e/resourceGroups/hdicsharprg5384/providers/Microsoft.HDInsight/clusters/hdisdk-gateway97/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -142,7 +142,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -153,13 +153,13 @@ "no-cache" ], "x-ms-request-id": [ - "f171f5db-57a0-4f54-b3d3-62f3381b2435" + "6f9c06da-dfdb-414d-8070-f7f31b8e57d6" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "49823194-9644-4af8-948a-e5c8035608c8" + "a8156275-556c-4dc1-ac2f-6cfa09141c0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -168,13 +168,13 @@ "11998" ], "x-ms-routing-request-id": [ - "WESTUS2:20190125T133253Z:49823194-9644-4af8-948a-e5c8035608c8" + "WESTUS2:20190219T101119Z:a8156275-556c-4dc1-ac2f-6cfa09141c0b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Jan 2019 13:32:52 GMT" + "Tue, 19 Feb 2019 10:11:18 GMT" ], "Content-Length": [ "23" @@ -190,7 +190,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7d441bdb-f39a-4ab3-8866-afb225cb9886/resourceGroups/hdicsharprg4220/providers/Microsoft.HDInsight/clusters/hdisdk-http1204/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/d262af65-f7b1-4b63-9c55-4058673d935e/resourceGroups/hdicsharprg5384/providers/Microsoft.HDInsight/clusters/hdisdk-gateway97/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -198,7 +198,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -209,13 +209,13 @@ "no-cache" ], "x-ms-request-id": [ - "115cbe73-8f29-4bec-8bff-f4637812f4d8" + "669ba73c-d3e8-4f31-8d7d-27c6823c224b" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "4634fee4-dd69-4d0c-bf62-d97fcc94013e" + "40d460cd-ccde-4332-8523-5eca98c3d10b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -224,13 +224,13 @@ "11997" ], "x-ms-routing-request-id": [ - "WESTUS2:20190125T133323Z:4634fee4-dd69-4d0c-bf62-d97fcc94013e" + "WESTUS2:20190219T101150Z:40d460cd-ccde-4332-8523-5eca98c3d10b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Jan 2019 13:33:23 GMT" + "Tue, 19 Feb 2019 10:11:50 GMT" ], "Content-Length": [ "23" @@ -246,7 +246,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7d441bdb-f39a-4ab3-8866-afb225cb9886/resourceGroups/hdicsharprg4220/providers/Microsoft.HDInsight/clusters/hdisdk-http1204/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/d262af65-f7b1-4b63-9c55-4058673d935e/resourceGroups/hdicsharprg5384/providers/Microsoft.HDInsight/clusters/hdisdk-gateway97/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -254,7 +254,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -265,13 +265,13 @@ "no-cache" ], "x-ms-request-id": [ - "2a77402b-0ffc-4549-b768-1ec30e8f9d2c" + "77dffe4d-fe66-4092-b377-265c72bc7355" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "28420615-b2d0-4b2c-a58c-1952103afef7" + "2a6497c4-a12b-4580-a337-a4e4e884585f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -280,13 +280,13 @@ "11996" ], "x-ms-routing-request-id": [ - "WESTUS2:20190125T133354Z:28420615-b2d0-4b2c-a58c-1952103afef7" + "WESTUS2:20190219T101221Z:2a6497c4-a12b-4580-a337-a4e4e884585f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Jan 2019 13:33:53 GMT" + "Tue, 19 Feb 2019 10:12:20 GMT" ], "Content-Length": [ "23" @@ -302,7 +302,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7d441bdb-f39a-4ab3-8866-afb225cb9886/resourceGroups/hdicsharprg4220/providers/Microsoft.HDInsight/clusters/hdisdk-http1204/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/d262af65-f7b1-4b63-9c55-4058673d935e/resourceGroups/hdicsharprg5384/providers/Microsoft.HDInsight/clusters/hdisdk-gateway97/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -310,7 +310,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -321,13 +321,13 @@ "no-cache" ], "x-ms-request-id": [ - "19020920-7164-4665-bfec-605b38e8f468" + "2e791ee5-68ef-45af-a4b1-562069004cb4" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "e7f00ac6-549c-452e-8386-ab102a9c346c" + "45cda9fa-b1e0-466f-868b-f338a83c6ddb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -336,13 +336,13 @@ "11995" ], "x-ms-routing-request-id": [ - "WESTUS2:20190125T133424Z:e7f00ac6-549c-452e-8386-ab102a9c346c" + "WESTUS2:20190219T101251Z:45cda9fa-b1e0-466f-868b-f338a83c6ddb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Jan 2019 13:34:24 GMT" + "Tue, 19 Feb 2019 10:12:51 GMT" ], "Content-Length": [ "23" @@ -358,7 +358,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7d441bdb-f39a-4ab3-8866-afb225cb9886/resourceGroups/hdicsharprg4220/providers/Microsoft.HDInsight/clusters/hdisdk-http1204/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/d262af65-f7b1-4b63-9c55-4058673d935e/resourceGroups/hdicsharprg5384/providers/Microsoft.HDInsight/clusters/hdisdk-gateway97/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -366,7 +366,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -377,13 +377,13 @@ "no-cache" ], "x-ms-request-id": [ - "317b8d4e-daa2-4f0b-8d07-0dfebbba24bb" + "05ff831a-883f-47e0-8725-47642c7a5685" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "1d443a77-b2c9-40bf-a6e5-0893d00828a4" + "566bcf12-b131-425c-b5c3-e95db477ed0d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -392,13 +392,13 @@ "11994" ], "x-ms-routing-request-id": [ - "WESTUS2:20190125T133455Z:1d443a77-b2c9-40bf-a6e5-0893d00828a4" + "WESTUS2:20190219T101322Z:566bcf12-b131-425c-b5c3-e95db477ed0d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Jan 2019 13:34:54 GMT" + "Tue, 19 Feb 2019 10:13:22 GMT" ], "Content-Length": [ "23" @@ -414,7 +414,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7d441bdb-f39a-4ab3-8866-afb225cb9886/resourceGroups/hdicsharprg4220/providers/Microsoft.HDInsight/clusters/hdisdk-http1204/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/d262af65-f7b1-4b63-9c55-4058673d935e/resourceGroups/hdicsharprg5384/providers/Microsoft.HDInsight/clusters/hdisdk-gateway97/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -422,7 +422,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -433,13 +433,13 @@ "no-cache" ], "x-ms-request-id": [ - "6221402d-b886-4d82-bdfa-331f30c191ef" + "9b1fb2ef-0b0f-4dcd-ae7b-542ed6408265" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "0f941f8d-c8f1-4dec-914d-c8a7b3bd68eb" + "a0b94648-63a1-47cc-ae73-3fb5a383f6e1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -448,13 +448,13 @@ "11993" ], "x-ms-routing-request-id": [ - "WESTUS2:20190125T133525Z:0f941f8d-c8f1-4dec-914d-c8a7b3bd68eb" + "WESTUS2:20190219T101353Z:a0b94648-63a1-47cc-ae73-3fb5a383f6e1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Jan 2019 13:35:25 GMT" + "Tue, 19 Feb 2019 10:13:53 GMT" ], "Content-Length": [ "23" @@ -470,7 +470,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7d441bdb-f39a-4ab3-8866-afb225cb9886/resourceGroups/hdicsharprg4220/providers/Microsoft.HDInsight/clusters/hdisdk-http1204/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/d262af65-f7b1-4b63-9c55-4058673d935e/resourceGroups/hdicsharprg5384/providers/Microsoft.HDInsight/clusters/hdisdk-gateway97/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -478,7 +478,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -489,13 +489,13 @@ "no-cache" ], "x-ms-request-id": [ - "f795dc4c-838b-451d-b48c-a3e29e57501c" + "36266293-09a2-4aad-8d1d-57fe4cc3343f" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "64ac526a-1fbe-4152-a98e-38a4edeee661" + "578cd31b-55aa-4cad-85da-a38b8a1cf8fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -504,13 +504,13 @@ "11992" ], "x-ms-routing-request-id": [ - "WESTUS2:20190125T133556Z:64ac526a-1fbe-4152-a98e-38a4edeee661" + "WESTUS2:20190219T101424Z:578cd31b-55aa-4cad-85da-a38b8a1cf8fc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Jan 2019 13:35:55 GMT" + "Tue, 19 Feb 2019 10:14:23 GMT" ], "Content-Length": [ "23" @@ -526,7 +526,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7d441bdb-f39a-4ab3-8866-afb225cb9886/resourceGroups/hdicsharprg4220/providers/Microsoft.HDInsight/clusters/hdisdk-http1204/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/d262af65-f7b1-4b63-9c55-4058673d935e/resourceGroups/hdicsharprg5384/providers/Microsoft.HDInsight/clusters/hdisdk-gateway97/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -534,7 +534,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -545,13 +545,13 @@ "no-cache" ], "x-ms-request-id": [ - "e6b411bb-aade-413b-89c8-6b3941c3bf5b" + "117c1792-101b-4a34-9a2c-86731ad1ab52" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "4469a354-a92f-469e-b5b8-96425b7882ca" + "fbead53f-f9ab-490e-910f-4cedd2799eb4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -560,13 +560,13 @@ "11991" ], "x-ms-routing-request-id": [ - "WESTUS2:20190125T133626Z:4469a354-a92f-469e-b5b8-96425b7882ca" + "WESTUS2:20190219T101455Z:fbead53f-f9ab-490e-910f-4cedd2799eb4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Jan 2019 13:36:26 GMT" + "Tue, 19 Feb 2019 10:14:54 GMT" ], "Content-Length": [ "23" @@ -582,7 +582,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7d441bdb-f39a-4ab3-8866-afb225cb9886/resourceGroups/hdicsharprg4220/providers/Microsoft.HDInsight/clusters/hdisdk-http1204/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/d262af65-f7b1-4b63-9c55-4058673d935e/resourceGroups/hdicsharprg5384/providers/Microsoft.HDInsight/clusters/hdisdk-gateway97/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -590,7 +590,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -601,13 +601,13 @@ "no-cache" ], "x-ms-request-id": [ - "e8d4742b-e1d0-4379-8f4c-d1ceeebe1f17" + "d0691b52-95f1-4f44-8794-1e05bb8c7ec0" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "e2a31da4-ca07-425a-94f6-7ba3b37dcaf9" + "ae726de7-4945-4149-b595-c40682cce432" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -616,13 +616,13 @@ "11990" ], "x-ms-routing-request-id": [ - "WESTUS2:20190125T133657Z:e2a31da4-ca07-425a-94f6-7ba3b37dcaf9" + "WESTUS2:20190219T101525Z:ae726de7-4945-4149-b595-c40682cce432" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Jan 2019 13:36:57 GMT" + "Tue, 19 Feb 2019 10:15:25 GMT" ], "Content-Length": [ "23" @@ -638,7 +638,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7d441bdb-f39a-4ab3-8866-afb225cb9886/resourceGroups/hdicsharprg4220/providers/Microsoft.HDInsight/clusters/hdisdk-http1204/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/d262af65-f7b1-4b63-9c55-4058673d935e/resourceGroups/hdicsharprg5384/providers/Microsoft.HDInsight/clusters/hdisdk-gateway97/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -646,7 +646,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -657,13 +657,13 @@ "no-cache" ], "x-ms-request-id": [ - "7115d388-d009-4b37-9d3c-2fd658c21414" + "222e766b-0cfd-4d61-b967-2e37fbe8aad1" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "83f13722-4b1a-4c6d-941a-d5e87601c0e4" + "b2b4e879-6d3c-455a-b39c-a3f8c0b34910" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -672,13 +672,13 @@ "11989" ], "x-ms-routing-request-id": [ - "WESTUS2:20190125T133727Z:83f13722-4b1a-4c6d-941a-d5e87601c0e4" + "WESTUS2:20190219T101556Z:b2b4e879-6d3c-455a-b39c-a3f8c0b34910" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Jan 2019 13:37:26 GMT" + "Tue, 19 Feb 2019 10:15:56 GMT" ], "Content-Length": [ "23" @@ -694,7 +694,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7d441bdb-f39a-4ab3-8866-afb225cb9886/resourceGroups/hdicsharprg4220/providers/Microsoft.HDInsight/clusters/hdisdk-http1204/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/d262af65-f7b1-4b63-9c55-4058673d935e/resourceGroups/hdicsharprg5384/providers/Microsoft.HDInsight/clusters/hdisdk-gateway97/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -702,7 +702,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -713,13 +713,13 @@ "no-cache" ], "x-ms-request-id": [ - "6192f648-fceb-4669-9c32-21dd8f53c475" + "62659c26-17cf-40e2-af8b-93073c34f01f" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "e0e9dad1-f4d1-4fb8-a7be-f61ca26e8d2b" + "d56f74bd-ea33-4f54-9e03-cb7e5318c49f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -728,13 +728,13 @@ "11988" ], "x-ms-routing-request-id": [ - "WESTUS2:20190125T133757Z:e0e9dad1-f4d1-4fb8-a7be-f61ca26e8d2b" + "WESTUS2:20190219T101627Z:d56f74bd-ea33-4f54-9e03-cb7e5318c49f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Jan 2019 13:37:57 GMT" + "Tue, 19 Feb 2019 10:16:26 GMT" ], "Content-Length": [ "23" @@ -750,7 +750,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7d441bdb-f39a-4ab3-8866-afb225cb9886/resourceGroups/hdicsharprg4220/providers/Microsoft.HDInsight/clusters/hdisdk-http1204/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/d262af65-f7b1-4b63-9c55-4058673d935e/resourceGroups/hdicsharprg5384/providers/Microsoft.HDInsight/clusters/hdisdk-gateway97/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -758,7 +758,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -769,13 +769,13 @@ "no-cache" ], "x-ms-request-id": [ - "7e8202ae-cb28-429c-acd6-f2bced94d40b" + "453dd6b0-86d1-4836-900b-c25db3e5d61e" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "0cd9f6e5-865a-4275-9132-e513e235c540" + "6b59691c-d3fe-47ed-b6a7-0bf4cc6a0423" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -784,13 +784,13 @@ "11987" ], "x-ms-routing-request-id": [ - "WESTUS2:20190125T133828Z:0cd9f6e5-865a-4275-9132-e513e235c540" + "WESTUS2:20190219T101658Z:6b59691c-d3fe-47ed-b6a7-0bf4cc6a0423" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Jan 2019 13:38:27 GMT" + "Tue, 19 Feb 2019 10:16:57 GMT" ], "Content-Length": [ "23" @@ -806,7 +806,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7d441bdb-f39a-4ab3-8866-afb225cb9886/resourceGroups/hdicsharprg4220/providers/Microsoft.HDInsight/clusters/hdisdk-http1204/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/d262af65-f7b1-4b63-9c55-4058673d935e/resourceGroups/hdicsharprg5384/providers/Microsoft.HDInsight/clusters/hdisdk-gateway97/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -814,7 +814,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -825,13 +825,13 @@ "no-cache" ], "x-ms-request-id": [ - "10b5161f-aae4-4a27-abb3-1b317c8285bc" + "c009fe28-65be-49d5-899c-0ff0371ccde4" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "5969e81b-425b-496c-8c17-852ea32d9378" + "9d181f81-3282-4ece-9c05-0266af2cb2e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -840,13 +840,13 @@ "11986" ], "x-ms-routing-request-id": [ - "WESTUS2:20190125T133858Z:5969e81b-425b-496c-8c17-852ea32d9378" + "WESTUS2:20190219T101728Z:9d181f81-3282-4ece-9c05-0266af2cb2e2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Jan 2019 13:38:58 GMT" + "Tue, 19 Feb 2019 10:17:27 GMT" ], "Content-Length": [ "23" @@ -862,7 +862,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7d441bdb-f39a-4ab3-8866-afb225cb9886/resourceGroups/hdicsharprg4220/providers/Microsoft.HDInsight/clusters/hdisdk-http1204/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/d262af65-f7b1-4b63-9c55-4058673d935e/resourceGroups/hdicsharprg5384/providers/Microsoft.HDInsight/clusters/hdisdk-gateway97/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -870,7 +870,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -881,13 +881,13 @@ "no-cache" ], "x-ms-request-id": [ - "feef3d2c-27a9-44ff-94b6-465a7a7d5b0d" + "195d5c6e-3883-47bc-9ace-268d376618e1" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "bbaf2c1e-9a97-41dc-baf3-58ea5baeea49" + "8f58d483-9087-44ef-b218-795fd1c8d1f0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -896,13 +896,13 @@ "11985" ], "x-ms-routing-request-id": [ - "WESTUS2:20190125T133929Z:bbaf2c1e-9a97-41dc-baf3-58ea5baeea49" + "WESTUS2:20190219T101759Z:8f58d483-9087-44ef-b218-795fd1c8d1f0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Jan 2019 13:39:28 GMT" + "Tue, 19 Feb 2019 10:17:59 GMT" ], "Content-Length": [ "23" @@ -918,7 +918,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7d441bdb-f39a-4ab3-8866-afb225cb9886/resourceGroups/hdicsharprg4220/providers/Microsoft.HDInsight/clusters/hdisdk-http1204/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/d262af65-f7b1-4b63-9c55-4058673d935e/resourceGroups/hdicsharprg5384/providers/Microsoft.HDInsight/clusters/hdisdk-gateway97/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -926,7 +926,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -937,13 +937,13 @@ "no-cache" ], "x-ms-request-id": [ - "d4cf95ba-7d1f-4730-9f7e-72a7150a992e" + "4771b561-c826-4db1-b3d7-fb1d7d2194ef" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "a9ab78bd-251a-4a87-9515-0416243f2ed6" + "7b119307-a470-48af-b92d-b5b0da3e95be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -952,13 +952,13 @@ "11984" ], "x-ms-routing-request-id": [ - "WESTUS2:20190125T133959Z:a9ab78bd-251a-4a87-9515-0416243f2ed6" + "WESTUS2:20190219T101830Z:7b119307-a470-48af-b92d-b5b0da3e95be" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Jan 2019 13:39:59 GMT" + "Tue, 19 Feb 2019 10:18:29 GMT" ], "Content-Length": [ "23" @@ -974,7 +974,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7d441bdb-f39a-4ab3-8866-afb225cb9886/resourceGroups/hdicsharprg4220/providers/Microsoft.HDInsight/clusters/hdisdk-http1204/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/d262af65-f7b1-4b63-9c55-4058673d935e/resourceGroups/hdicsharprg5384/providers/Microsoft.HDInsight/clusters/hdisdk-gateway97/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -982,7 +982,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -993,13 +993,13 @@ "no-cache" ], "x-ms-request-id": [ - "056f9ffe-ec58-41cc-b8f1-237d56235c98" + "e229620b-aca4-4877-bb89-d82b6624ee09" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "3f3a23cf-47bd-49c0-9680-559693aa0275" + "e44552fd-c659-4e80-b106-cc4473eff88a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1008,13 +1008,13 @@ "11983" ], "x-ms-routing-request-id": [ - "WESTUS2:20190125T134030Z:3f3a23cf-47bd-49c0-9680-559693aa0275" + "WESTUS2:20190219T101900Z:e44552fd-c659-4e80-b106-cc4473eff88a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Jan 2019 13:40:29 GMT" + "Tue, 19 Feb 2019 10:19:00 GMT" ], "Content-Length": [ "23" @@ -1030,7 +1030,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7d441bdb-f39a-4ab3-8866-afb225cb9886/resourceGroups/hdicsharprg4220/providers/Microsoft.HDInsight/clusters/hdisdk-http1204/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/d262af65-f7b1-4b63-9c55-4058673d935e/resourceGroups/hdicsharprg5384/providers/Microsoft.HDInsight/clusters/hdisdk-gateway97/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1038,7 +1038,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -1049,13 +1049,13 @@ "no-cache" ], "x-ms-request-id": [ - "e83bef56-3fd0-4c2e-b79b-e476009fecba" + "a7e92420-666b-49cf-a0a0-6da42615ac7c" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "bffac636-6521-4171-aaad-94ff8f334115" + "5bdc3a10-68cc-4435-af18-b4b6cd3a75ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1064,13 +1064,13 @@ "11982" ], "x-ms-routing-request-id": [ - "WESTUS2:20190125T134100Z:bffac636-6521-4171-aaad-94ff8f334115" + "WESTUS2:20190219T101931Z:5bdc3a10-68cc-4435-af18-b4b6cd3a75ba" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Jan 2019 13:41:00 GMT" + "Tue, 19 Feb 2019 10:19:31 GMT" ], "Content-Length": [ "23" @@ -1086,7 +1086,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7d441bdb-f39a-4ab3-8866-afb225cb9886/resourceGroups/hdicsharprg4220/providers/Microsoft.HDInsight/clusters/hdisdk-http1204/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/d262af65-f7b1-4b63-9c55-4058673d935e/resourceGroups/hdicsharprg5384/providers/Microsoft.HDInsight/clusters/hdisdk-gateway97/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1094,7 +1094,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -1105,13 +1105,13 @@ "no-cache" ], "x-ms-request-id": [ - "5bf7a6b7-aabb-47c2-b4b3-dd5038a56451" + "b094e543-c245-4f54-bd21-cbdfbff7c1ab" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "6cdc31d0-2151-424f-81d2-724c4251d23c" + "f2dc0d57-df2b-449f-a444-718d79f6f843" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1120,13 +1120,13 @@ "11981" ], "x-ms-routing-request-id": [ - "WESTUS2:20190125T134130Z:6cdc31d0-2151-424f-81d2-724c4251d23c" + "WESTUS2:20190219T102002Z:f2dc0d57-df2b-449f-a444-718d79f6f843" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Jan 2019 13:41:30 GMT" + "Tue, 19 Feb 2019 10:20:02 GMT" ], "Content-Length": [ "23" @@ -1142,7 +1142,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7d441bdb-f39a-4ab3-8866-afb225cb9886/resourceGroups/hdicsharprg4220/providers/Microsoft.HDInsight/clusters/hdisdk-http1204/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/d262af65-f7b1-4b63-9c55-4058673d935e/resourceGroups/hdicsharprg5384/providers/Microsoft.HDInsight/clusters/hdisdk-gateway97/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1150,7 +1150,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -1161,13 +1161,13 @@ "no-cache" ], "x-ms-request-id": [ - "171c41dd-eb78-4281-b4b1-fed903d5820e" + "0ef00e0a-1e92-4a10-ac23-d3ad5db95e48" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "9a947f62-d10d-4848-9c60-62ccb35b59be" + "6c584d89-ad9c-4401-bac2-44f488e77924" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1176,13 +1176,13 @@ "11980" ], "x-ms-routing-request-id": [ - "WESTUS2:20190125T134201Z:9a947f62-d10d-4848-9c60-62ccb35b59be" + "WESTUS2:20190219T102033Z:6c584d89-ad9c-4401-bac2-44f488e77924" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Jan 2019 13:42:01 GMT" + "Tue, 19 Feb 2019 10:20:32 GMT" ], "Content-Length": [ "23" @@ -1198,7 +1198,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7d441bdb-f39a-4ab3-8866-afb225cb9886/resourceGroups/hdicsharprg4220/providers/Microsoft.HDInsight/clusters/hdisdk-http1204/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/d262af65-f7b1-4b63-9c55-4058673d935e/resourceGroups/hdicsharprg5384/providers/Microsoft.HDInsight/clusters/hdisdk-gateway97/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1206,7 +1206,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -1217,13 +1217,13 @@ "no-cache" ], "x-ms-request-id": [ - "1a7d0eba-4138-4803-9f10-2d7e44cf6be7" + "d7f8b8a1-0edd-4783-b388-c1b96dfb5a2f" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "1b80dca7-54e8-4292-b13a-e91c2119df4e" + "ff28dd6a-9e29-4d87-ad0f-b1a83a4a307f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1232,13 +1232,13 @@ "11979" ], "x-ms-routing-request-id": [ - "WESTUS2:20190125T134231Z:1b80dca7-54e8-4292-b13a-e91c2119df4e" + "WESTUS2:20190219T102104Z:ff28dd6a-9e29-4d87-ad0f-b1a83a4a307f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Jan 2019 13:42:31 GMT" + "Tue, 19 Feb 2019 10:21:04 GMT" ], "Content-Length": [ "23" @@ -1254,7 +1254,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7d441bdb-f39a-4ab3-8866-afb225cb9886/resourceGroups/hdicsharprg4220/providers/Microsoft.HDInsight/clusters/hdisdk-http1204/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/d262af65-f7b1-4b63-9c55-4058673d935e/resourceGroups/hdicsharprg5384/providers/Microsoft.HDInsight/clusters/hdisdk-gateway97/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1262,7 +1262,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -1273,13 +1273,13 @@ "no-cache" ], "x-ms-request-id": [ - "fa2d86fa-cb77-4bef-b084-6546133fb443" + "f794dd16-d9ed-49ea-84ab-6e839108ef4e" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "91d68cd3-4d28-4e04-9327-08eaef8cb92a" + "40b63b21-916e-43d5-8be4-938a87400308" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1288,13 +1288,13 @@ "11978" ], "x-ms-routing-request-id": [ - "WESTUS2:20190125T134304Z:91d68cd3-4d28-4e04-9327-08eaef8cb92a" + "WESTUS2:20190219T102134Z:40b63b21-916e-43d5-8be4-938a87400308" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Jan 2019 13:43:04 GMT" + "Tue, 19 Feb 2019 10:21:34 GMT" ], "Content-Length": [ "23" @@ -1310,7 +1310,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7d441bdb-f39a-4ab3-8866-afb225cb9886/resourceGroups/hdicsharprg4220/providers/Microsoft.HDInsight/clusters/hdisdk-http1204/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/d262af65-f7b1-4b63-9c55-4058673d935e/resourceGroups/hdicsharprg5384/providers/Microsoft.HDInsight/clusters/hdisdk-gateway97/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1318,7 +1318,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -1329,13 +1329,13 @@ "no-cache" ], "x-ms-request-id": [ - "2b7f73b5-a690-4241-9a95-e931cd74c43b" + "f3a12739-2fee-4241-a34f-263a739a8aa3" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "ab50805f-8d49-4e1a-b6f8-25c69665cad0" + "c6eb59f4-1196-46a1-8e5d-b6b590978bc7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1344,13 +1344,13 @@ "11977" ], "x-ms-routing-request-id": [ - "WESTUS2:20190125T134335Z:ab50805f-8d49-4e1a-b6f8-25c69665cad0" + "WESTUS2:20190219T102205Z:c6eb59f4-1196-46a1-8e5d-b6b590978bc7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Jan 2019 13:43:34 GMT" + "Tue, 19 Feb 2019 10:22:05 GMT" ], "Content-Length": [ "23" @@ -1366,7 +1366,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7d441bdb-f39a-4ab3-8866-afb225cb9886/resourceGroups/hdicsharprg4220/providers/Microsoft.HDInsight/clusters/hdisdk-http1204/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/d262af65-f7b1-4b63-9c55-4058673d935e/resourceGroups/hdicsharprg5384/providers/Microsoft.HDInsight/clusters/hdisdk-gateway97/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1374,7 +1374,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -1385,13 +1385,13 @@ "no-cache" ], "x-ms-request-id": [ - "6f4b3d3d-0f2f-49be-adbe-8991a7897f17" + "5cb61c08-82f9-49dc-9661-5fab28654d9f" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "424ce0bc-b51d-47e8-b12a-abbfed0fbb01" + "2786b717-f019-4123-9d51-be350a71374f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1400,13 +1400,13 @@ "11976" ], "x-ms-routing-request-id": [ - "WESTUS2:20190125T134405Z:424ce0bc-b51d-47e8-b12a-abbfed0fbb01" + "WESTUS2:20190219T102236Z:2786b717-f019-4123-9d51-be350a71374f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Jan 2019 13:44:05 GMT" + "Tue, 19 Feb 2019 10:22:35 GMT" ], "Content-Length": [ "23" @@ -1422,7 +1422,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7d441bdb-f39a-4ab3-8866-afb225cb9886/resourceGroups/hdicsharprg4220/providers/Microsoft.HDInsight/clusters/hdisdk-http1204/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/d262af65-f7b1-4b63-9c55-4058673d935e/resourceGroups/hdicsharprg5384/providers/Microsoft.HDInsight/clusters/hdisdk-gateway97/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1430,7 +1430,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -1441,13 +1441,13 @@ "no-cache" ], "x-ms-request-id": [ - "37b6a0c9-1856-436b-b17f-3089ae19235a" + "3d20f2e6-78ea-4538-927e-2c380653ee10" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "302ee979-8824-48a6-837c-6fe1b449f7b1" + "d01fc3fc-48ea-4699-9e20-74079a9e4a51" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1456,13 +1456,13 @@ "11975" ], "x-ms-routing-request-id": [ - "WESTUS2:20190125T134436Z:302ee979-8824-48a6-837c-6fe1b449f7b1" + "WESTUS2:20190219T102307Z:d01fc3fc-48ea-4699-9e20-74079a9e4a51" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Jan 2019 13:44:35 GMT" + "Tue, 19 Feb 2019 10:23:07 GMT" ], "Content-Length": [ "23" @@ -1478,7 +1478,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7d441bdb-f39a-4ab3-8866-afb225cb9886/resourceGroups/hdicsharprg4220/providers/Microsoft.HDInsight/clusters/hdisdk-http1204/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/d262af65-f7b1-4b63-9c55-4058673d935e/resourceGroups/hdicsharprg5384/providers/Microsoft.HDInsight/clusters/hdisdk-gateway97/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1486,7 +1486,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -1497,13 +1497,13 @@ "no-cache" ], "x-ms-request-id": [ - "a2dbfc76-93ae-4067-a031-259b3b4ab3ad" + "9e9aa84b-667c-4bcb-979d-1153eb5746ee" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "cfea0267-1d0e-49ec-aaa0-5d13958b45fd" + "34c6d648-df93-47c2-add1-44972d954852" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1512,13 +1512,13 @@ "11974" ], "x-ms-routing-request-id": [ - "WESTUS2:20190125T134506Z:cfea0267-1d0e-49ec-aaa0-5d13958b45fd" + "WESTUS2:20190219T102337Z:34c6d648-df93-47c2-add1-44972d954852" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Jan 2019 13:45:05 GMT" + "Tue, 19 Feb 2019 10:23:37 GMT" ], "Content-Length": [ "23" @@ -1534,7 +1534,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7d441bdb-f39a-4ab3-8866-afb225cb9886/resourceGroups/hdicsharprg4220/providers/Microsoft.HDInsight/clusters/hdisdk-http1204/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/d262af65-f7b1-4b63-9c55-4058673d935e/resourceGroups/hdicsharprg5384/providers/Microsoft.HDInsight/clusters/hdisdk-gateway97/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1542,7 +1542,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -1553,13 +1553,13 @@ "no-cache" ], "x-ms-request-id": [ - "950e3d3e-fa5a-4448-b8bd-ad863894c9a8" + "584bfb5a-9a71-473a-8848-841ad5f15a77" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "73f36cc8-2414-4b19-a0cd-efbd1abd47b9" + "e71ceb79-cbb6-482d-9e0e-6010063d0a21" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1568,13 +1568,13 @@ "11973" ], "x-ms-routing-request-id": [ - "WESTUS2:20190125T134537Z:73f36cc8-2414-4b19-a0cd-efbd1abd47b9" + "WESTUS2:20190219T102408Z:e71ceb79-cbb6-482d-9e0e-6010063d0a21" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Jan 2019 13:45:36 GMT" + "Tue, 19 Feb 2019 10:24:08 GMT" ], "Content-Length": [ "23" @@ -1590,7 +1590,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7d441bdb-f39a-4ab3-8866-afb225cb9886/resourceGroups/hdicsharprg4220/providers/Microsoft.HDInsight/clusters/hdisdk-http1204/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/d262af65-f7b1-4b63-9c55-4058673d935e/resourceGroups/hdicsharprg5384/providers/Microsoft.HDInsight/clusters/hdisdk-gateway97/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1598,7 +1598,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -1609,13 +1609,13 @@ "no-cache" ], "x-ms-request-id": [ - "bb443440-6648-48af-b768-1294346f017b" + "e42eea27-9d05-4b43-a7c0-e8208e4ab954" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "39193b87-b42d-4280-a170-7f44afbe68ee" + "66d43730-fae7-4593-aaa4-76629d9b56dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1624,13 +1624,13 @@ "11972" ], "x-ms-routing-request-id": [ - "WESTUS2:20190125T134607Z:39193b87-b42d-4280-a170-7f44afbe68ee" + "WESTUS2:20190219T102439Z:66d43730-fae7-4593-aaa4-76629d9b56dd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Jan 2019 13:46:06 GMT" + "Tue, 19 Feb 2019 10:24:38 GMT" ], "Content-Length": [ "23" @@ -1646,7 +1646,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7d441bdb-f39a-4ab3-8866-afb225cb9886/resourceGroups/hdicsharprg4220/providers/Microsoft.HDInsight/clusters/hdisdk-http1204/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/d262af65-f7b1-4b63-9c55-4058673d935e/resourceGroups/hdicsharprg5384/providers/Microsoft.HDInsight/clusters/hdisdk-gateway97/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1654,7 +1654,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -1665,13 +1665,13 @@ "no-cache" ], "x-ms-request-id": [ - "c7f515d8-1984-4fec-bdb0-047a8a5a7d79" + "dbb9c394-8acd-4d6b-966a-99c8bc67fc65" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "ead4f710-bfe6-48ea-9517-45b8f3aa5964" + "068e785f-4239-423d-8ac4-bef91f96505a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1680,13 +1680,13 @@ "11971" ], "x-ms-routing-request-id": [ - "WESTUS2:20190125T134637Z:ead4f710-bfe6-48ea-9517-45b8f3aa5964" + "WESTUS2:20190219T102510Z:068e785f-4239-423d-8ac4-bef91f96505a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Jan 2019 13:46:37 GMT" + "Tue, 19 Feb 2019 10:25:09 GMT" ], "Content-Length": [ "23" @@ -1702,7 +1702,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7d441bdb-f39a-4ab3-8866-afb225cb9886/resourceGroups/hdicsharprg4220/providers/Microsoft.HDInsight/clusters/hdisdk-http1204/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/d262af65-f7b1-4b63-9c55-4058673d935e/resourceGroups/hdicsharprg5384/providers/Microsoft.HDInsight/clusters/hdisdk-gateway97/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1710,7 +1710,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -1721,13 +1721,13 @@ "no-cache" ], "x-ms-request-id": [ - "40827d2e-9ba2-467f-9a8b-e6d45b24abb9" + "a49adf48-b0a6-42d4-9b94-baa39d7a4b97" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "e8bfc7f5-e4ef-46ae-a1df-e0e369153b39" + "8a1e7529-4c59-458c-9ef5-cdcd26514dfb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1736,13 +1736,13 @@ "11970" ], "x-ms-routing-request-id": [ - "WESTUS2:20190125T134708Z:e8bfc7f5-e4ef-46ae-a1df-e0e369153b39" + "WESTUS2:20190219T102541Z:8a1e7529-4c59-458c-9ef5-cdcd26514dfb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Jan 2019 13:47:08 GMT" + "Tue, 19 Feb 2019 10:25:40 GMT" ], "Content-Length": [ "23" @@ -1758,7 +1758,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7d441bdb-f39a-4ab3-8866-afb225cb9886/resourceGroups/hdicsharprg4220/providers/Microsoft.HDInsight/clusters/hdisdk-http1204/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/d262af65-f7b1-4b63-9c55-4058673d935e/resourceGroups/hdicsharprg5384/providers/Microsoft.HDInsight/clusters/hdisdk-gateway97/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1766,7 +1766,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -1777,13 +1777,13 @@ "no-cache" ], "x-ms-request-id": [ - "3b052fd5-5244-4d8b-9721-72141ec29f4b" + "4f52a29f-5a8f-4c12-beba-4fe2c1bb1306" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "9bd648a0-85de-4c1e-bd7d-cf0d238a17e8" + "7d0f135b-ddc7-468b-8ef5-12c9ab29f744" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1792,13 +1792,13 @@ "11969" ], "x-ms-routing-request-id": [ - "WESTUS2:20190125T134738Z:9bd648a0-85de-4c1e-bd7d-cf0d238a17e8" + "WESTUS2:20190219T102611Z:7d0f135b-ddc7-468b-8ef5-12c9ab29f744" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Jan 2019 13:47:38 GMT" + "Tue, 19 Feb 2019 10:26:11 GMT" ], "Content-Length": [ "23" @@ -1814,7 +1814,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7d441bdb-f39a-4ab3-8866-afb225cb9886/resourceGroups/hdicsharprg4220/providers/Microsoft.HDInsight/clusters/hdisdk-http1204/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/d262af65-f7b1-4b63-9c55-4058673d935e/resourceGroups/hdicsharprg5384/providers/Microsoft.HDInsight/clusters/hdisdk-gateway97/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1822,7 +1822,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -1833,13 +1833,13 @@ "no-cache" ], "x-ms-request-id": [ - "85900ccf-fbb6-4419-a088-ed5cc63d17e4" + "638758a6-38bb-4ddb-80dd-999c5022d120" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "c4184a97-2bac-4e4a-9f79-eeb9b4525a8c" + "2876cacc-e8a6-4e11-82fe-1a96c15b0a92" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1848,13 +1848,13 @@ "11968" ], "x-ms-routing-request-id": [ - "WESTUS2:20190125T134809Z:c4184a97-2bac-4e4a-9f79-eeb9b4525a8c" + "WESTUS2:20190219T102642Z:2876cacc-e8a6-4e11-82fe-1a96c15b0a92" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Jan 2019 13:48:09 GMT" + "Tue, 19 Feb 2019 10:26:42 GMT" ], "Content-Length": [ "23" @@ -1870,7 +1870,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7d441bdb-f39a-4ab3-8866-afb225cb9886/resourceGroups/hdicsharprg4220/providers/Microsoft.HDInsight/clusters/hdisdk-http1204/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/d262af65-f7b1-4b63-9c55-4058673d935e/resourceGroups/hdicsharprg5384/providers/Microsoft.HDInsight/clusters/hdisdk-gateway97/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1878,7 +1878,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -1889,13 +1889,13 @@ "no-cache" ], "x-ms-request-id": [ - "3e390b33-1ae6-400f-904b-9c408c820b71" + "070ddbdc-552c-4327-893f-21fc1737b6e7" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "14aaa23e-731c-4cbb-b669-d0e9897a71e0" + "924053c9-d870-4b7d-95a4-3fb3fe4db9ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1904,13 +1904,13 @@ "11967" ], "x-ms-routing-request-id": [ - "WESTUS2:20190125T134839Z:14aaa23e-731c-4cbb-b669-d0e9897a71e0" + "WESTUS2:20190219T102713Z:924053c9-d870-4b7d-95a4-3fb3fe4db9ce" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Jan 2019 13:48:39 GMT" + "Tue, 19 Feb 2019 10:27:12 GMT" ], "Content-Length": [ "23" @@ -1926,7 +1926,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7d441bdb-f39a-4ab3-8866-afb225cb9886/resourceGroups/hdicsharprg4220/providers/Microsoft.HDInsight/clusters/hdisdk-http1204/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/d262af65-f7b1-4b63-9c55-4058673d935e/resourceGroups/hdicsharprg5384/providers/Microsoft.HDInsight/clusters/hdisdk-gateway97/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1934,7 +1934,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -1945,13 +1945,13 @@ "no-cache" ], "x-ms-request-id": [ - "cda519d2-c50f-41b0-9f98-62b7fc07500f" + "deaec92e-99fe-4ed0-8486-6ef6b39a673e" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "9bfdc9a1-99d7-4dde-a8dc-8595e5f73778" + "371c949f-d805-4c69-9133-9723c4c53437" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1960,13 +1960,13 @@ "11966" ], "x-ms-routing-request-id": [ - "WESTUS2:20190125T134910Z:9bfdc9a1-99d7-4dde-a8dc-8595e5f73778" + "WESTUS2:20190219T102744Z:371c949f-d805-4c69-9133-9723c4c53437" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Jan 2019 13:49:10 GMT" + "Tue, 19 Feb 2019 10:27:43 GMT" ], "Content-Length": [ "23" @@ -1982,7 +1982,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7d441bdb-f39a-4ab3-8866-afb225cb9886/resourceGroups/hdicsharprg4220/providers/Microsoft.HDInsight/clusters/hdisdk-http1204/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/d262af65-f7b1-4b63-9c55-4058673d935e/resourceGroups/hdicsharprg5384/providers/Microsoft.HDInsight/clusters/hdisdk-gateway97/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1990,7 +1990,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -2001,13 +2001,13 @@ "no-cache" ], "x-ms-request-id": [ - "bfe2d6db-31d8-4f76-952f-d014dd99fdfd" + "b4f31d83-0d71-4205-be65-a60398eb4270" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "c984b008-852b-4313-9e43-15e326aef3f1" + "72abc00c-f91e-4e66-bd1c-7c4e1f1c83b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2016,16 +2016,16 @@ "11965" ], "x-ms-routing-request-id": [ - "WESTUS2:20190125T134940Z:c984b008-852b-4313-9e43-15e326aef3f1" + "WESTUS2:20190219T102814Z:72abc00c-f91e-4e66-bd1c-7c4e1f1c83b0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Jan 2019 13:49:40 GMT" + "Tue, 19 Feb 2019 10:28:13 GMT" ], "Content-Length": [ - "23" + "22" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2034,11 +2034,11 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7d441bdb-f39a-4ab3-8866-afb225cb9886/resourceGroups/hdicsharprg4220/providers/Microsoft.HDInsight/clusters/hdisdk-http1204/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/d262af65-f7b1-4b63-9c55-4058673d935e/resourceGroups/hdicsharprg5384/providers/Microsoft.HDInsight/clusters/hdisdk-gateway97?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2046,7 +2046,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -2057,13 +2057,13 @@ "no-cache" ], "x-ms-request-id": [ - "aebb91dd-f1d0-42fb-8e95-ad5a6fcf9fdb" + "0755b744-47ae-4cba-8e98-f4e1e1df739a" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "979e256b-5df9-4b58-9f0d-32b30bab6281" + "81c0c05a-0391-405e-9e4d-d44d92cd50a1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2072,16 +2072,16 @@ "11964" ], "x-ms-routing-request-id": [ - "WESTUS2:20190125T135011Z:979e256b-5df9-4b58-9f0d-32b30bab6281" + "WESTUS2:20190219T102815Z:81c0c05a-0391-405e-9e4d-d44d92cd50a1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Jan 2019 13:50:11 GMT" + "Tue, 19 Feb 2019 10:28:15 GMT" ], "Content-Length": [ - "23" + "1476" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2090,19 +2090,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d262af65-f7b1-4b63-9c55-4058673d935e/resourceGroups/hdicsharprg5384/providers/Microsoft.HDInsight/clusters/hdisdk-gateway97\",\r\n \"name\": \"hdisdk-gateway97\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e431950f-e606-4db6-ab78-2f90ca415728\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3006-29\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1902132019.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Large\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser191\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Large\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser191\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Medium\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser191\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-02-19T10:10:17.543\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-gateway97-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-gateway97.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7d441bdb-f39a-4ab3-8866-afb225cb9886/resourceGroups/hdicsharprg4220/providers/Microsoft.HDInsight/clusters/hdisdk-http1204/azureasyncoperations/create?api-version=2018-06-01-preview", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/d262af65-f7b1-4b63-9c55-4058673d935e/resourceGroups/hdicsharprg5384/providers/Microsoft.HDInsight/clusters/hdisdk-gateway97/getGatewaySettings?api-version=2018-06-01-preview", + "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "e5687054-7be0-40f2-8125-4217d06b3803" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -2113,31 +2119,31 @@ "no-cache" ], "x-ms-request-id": [ - "3ff44d45-8d4d-4fa5-a283-f97b23c97973" + "c9c8bba9-1e02-4611-ba7f-2503c37cdabb" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "2fc7efe7-5883-463f-b161-881328bb4a8c" + "0056d125-ba8d-4fc2-83c9-e14223053a69" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-routing-request-id": [ - "WESTUS2:20190125T135041Z:2fc7efe7-5883-463f-b161-881328bb4a8c" + "WESTUS2:20190219T102816Z:0056d125-ba8d-4fc2-83c9-e14223053a69" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Jan 2019 13:50:40 GMT" + "Tue, 19 Feb 2019 10:28:15 GMT" ], "Content-Length": [ - "22" + "126" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2146,19 +2152,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"restAuthCredential.isEnabled\": \"true\",\r\n \"restAuthCredential.username\": \"admin1131\",\r\n \"restAuthCredential.password\": \"Password1!48\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7d441bdb-f39a-4ab3-8866-afb225cb9886/resourceGroups/hdicsharprg4220/providers/Microsoft.HDInsight/clusters/hdisdk-http1204?api-version=2018-06-01-preview", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/d262af65-f7b1-4b63-9c55-4058673d935e/resourceGroups/hdicsharprg5384/providers/Microsoft.HDInsight/clusters/hdisdk-gateway97/getGatewaySettings?api-version=2018-06-01-preview", + "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "028ad3d3-22eb-41aa-86b2-5cd43c3e720b" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -2169,31 +2181,31 @@ "no-cache" ], "x-ms-request-id": [ - "b9006d8f-c815-4054-ba26-b7b18781741a" + "fadd30b4-36e5-4584-b88e-2f98589856a0" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "0281fae3-622f-4ac8-8077-69b674ff21e0" + "e7a0517a-42a7-4f0b-b3ba-7c401396be4b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" ], "x-ms-routing-request-id": [ - "WESTUS2:20190125T135042Z:0281fae3-622f-4ac8-8077-69b674ff21e0" + "WESTUS2:20190219T102817Z:e7a0517a-42a7-4f0b-b3ba-7c401396be4b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Jan 2019 13:50:41 GMT" + "Tue, 19 Feb 2019 10:28:16 GMT" ], "Content-Length": [ - "1474" + "126" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2202,16 +2214,16 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7d441bdb-f39a-4ab3-8866-afb225cb9886/resourceGroups/hdicsharprg4220/providers/Microsoft.HDInsight/clusters/hdisdk-http1204\",\r\n \"name\": \"hdisdk-http1204\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"d35d4c04-6114-4721-9409-7c0855619632\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3005-27\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1901050618.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Large\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5582\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Large\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5582\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Medium\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5582\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-01-25T13:31:51.24\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-http1204-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-http1204.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"restAuthCredential.isEnabled\": \"true\",\r\n \"restAuthCredential.username\": \"admin1131\",\r\n \"restAuthCredential.password\": \"Password1!48\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7d441bdb-f39a-4ab3-8866-afb225cb9886/resourceGroups/hdicsharprg4220/providers/Microsoft.HDInsight/clusters/hdisdk-http1204/configurations/gateway?api-version=2018-06-01-preview", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/d262af65-f7b1-4b63-9c55-4058673d935e/resourceGroups/hdicsharprg5384/providers/Microsoft.HDInsight/clusters/hdisdk-gateway97/getGatewaySettings?api-version=2018-06-01-preview", + "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a6e4cd94-52eb-45fb-8b0a-e537773a5171" + "5281a3d6-317c-492e-bb62-c3409072651d" ], "Accept-Language": [ "en-US" @@ -2220,7 +2232,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -2231,28 +2243,28 @@ "no-cache" ], "x-ms-request-id": [ - "c0e1b9f3-2610-4cdf-88cf-7c6765064ce5" + "33f62bab-e52e-4e56-9b35-df41dfcde36c" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "49609e6a-0e5c-4658-9a0e-ea9dab117a53" + "adc8b031-1959-4ecc-9537-ae71782d36fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" ], "x-ms-routing-request-id": [ - "WESTUS2:20190125T135043Z:49609e6a-0e5c-4658-9a0e-ea9dab117a53" + "WESTUS2:20190219T103020Z:adc8b031-1959-4ecc-9537-ae71782d36fe" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Jan 2019 13:50:42 GMT" + "Tue, 19 Feb 2019 10:30:20 GMT" ], "Content-Length": [ "127" @@ -2264,16 +2276,16 @@ "-1" ] }, - "ResponseBody": "{\r\n \"restAuthCredential.isEnabled\": \"true\",\r\n \"restAuthCredential.username\": \"admin5274\",\r\n \"restAuthCredential.password\": \"Password19322\"\r\n}", + "ResponseBody": "{\r\n \"restAuthCredential.isEnabled\": \"true\",\r\n \"restAuthCredential.username\": \"admin1131\",\r\n \"restAuthCredential.password\": \"NewPassword1!\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7d441bdb-f39a-4ab3-8866-afb225cb9886/resourceGroups/hdicsharprg4220/providers/Microsoft.HDInsight/clusters/hdisdk-http1204/configurations/gateway?api-version=2018-06-01-preview", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/d262af65-f7b1-4b63-9c55-4058673d935e/resourceGroups/hdicsharprg5384/providers/Microsoft.HDInsight/clusters/hdisdk-gateway97/updateGatewaySettings?api-version=2018-06-01-preview", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"restAuthCredential.isEnabled\": false\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "dc4369bc-648c-4dc8-95d0-ff16160a1409" + "e4547105-d30d-4166-9c2e-c044536fa05c" ], "Accept-Language": [ "en-US" @@ -2282,7 +2294,13 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "45" ] }, "ResponseHeaders": { @@ -2293,31 +2311,31 @@ "no-cache" ], "x-ms-request-id": [ - "6d342ad6-6569-44d2-b551-082dbe3396ca" + "dbd1a3be-0033-413f-8266-db99ce2938bd" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "e089da6d-725e-445c-bbea-83086fc1f422" + "8cc7e7e1-f67e-4c92-bac8-1d0227d50662" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-routing-request-id": [ - "WESTUS2:20190125T135144Z:e089da6d-725e-445c-bbea-83086fc1f422" + "WESTUS2:20190219T102817Z:8cc7e7e1-f67e-4c92-bac8-1d0227d50662" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Jan 2019 13:51:45 GMT" + "Tue, 19 Feb 2019 10:28:16 GMT" ], "Content-Length": [ - "127" + "96" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2326,16 +2344,16 @@ "-1" ] }, - "ResponseBody": "{\r\n \"restAuthCredential.isEnabled\": \"true\",\r\n \"restAuthCredential.username\": \"admin5274\",\r\n \"restAuthCredential.password\": \"NewPassword1!\"\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"code\": \"MethodNotAllowed\",\r\n \"message\": \"Linux clusters do not support revoking HTTP credentials.\"\r\n}", + "StatusCode": 405 }, { - "RequestUri": "/subscriptions/7d441bdb-f39a-4ab3-8866-afb225cb9886/resourceGroups/hdicsharprg4220/providers/Microsoft.HDInsight/clusters/hdisdk-http1204/configurations/gateway?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/d262af65-f7b1-4b63-9c55-4058673d935e/resourceGroups/hdicsharprg5384/providers/Microsoft.HDInsight/clusters/hdisdk-gateway97/updateGatewaySettings?api-version=2018-06-01-preview", "RequestMethod": "POST", - "RequestBody": "{\r\n \"restAuthCredential.isEnabled\": \"true\",\r\n \"restAuthCredential.username\": \"admin5274\",\r\n \"restAuthCredential.password\": \"NewPassword1!\"\r\n}", + "RequestBody": "{\r\n \"restAuthCredential.isEnabled\": true,\r\n \"restAuthCredential.username\": \"admin1131\",\r\n \"restAuthCredential.password\": \"NewPassword1!\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3d2336a8-dd2b-4b1e-8aad-aff7ccd69233" + "184143c2-ea58-4f33-bcfd-8118b0e88bce" ], "Accept-Language": [ "en-US" @@ -2344,13 +2362,13 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "144" + "142" ] }, "ResponseHeaders": { @@ -2361,37 +2379,37 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/7d441bdb-f39a-4ab3-8866-afb225cb9886/resourceGroups/hdicsharprg4220/providers/Microsoft.HDInsight/clusters/hdisdk-http1204/operationresults/d9fe561d-c678-4cd1-8a73-01764f289081-0?api-version=2018-06-01-preview" + "https://management.azure.com/subscriptions/d262af65-f7b1-4b63-9c55-4058673d935e/resourceGroups/hdicsharprg5384/providers/Microsoft.HDInsight/clusters/hdisdk-gateway97/operationresults/35cf29a0-1171-48b3-91e0-c0b0434044b8-0-r?api-version=2018-06-01-preview" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/7d441bdb-f39a-4ab3-8866-afb225cb9886/resourceGroups/hdicsharprg4220/providers/Microsoft.HDInsight/clusters/hdisdk-http1204/azureasyncoperations/d9fe561d-c678-4cd1-8a73-01764f289081-0?api-version=2018-06-01-preview" + "https://management.azure.com:443/subscriptions/d262af65-f7b1-4b63-9c55-4058673d935e/resourceGroups/hdicsharprg5384/providers/Microsoft.HDInsight/clusters/hdisdk-gateway97/azureasyncoperations/35cf29a0-1171-48b3-91e0-c0b0434044b8-0-r?api-version=2018-06-01-preview" ], "x-ms-request-id": [ - "7ebe5b54-be64-437c-b422-df3f4de67eec" + "800a1a4c-3507-4d6a-918c-0e90ba8284a3" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "76f9d7e0-4855-40ba-b87d-306e397d15e1" + "db74e5f8-2d6a-43f4-a91f-d60b3468d2af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1196" ], "x-ms-routing-request-id": [ - "WESTUS2:20190125T135044Z:76f9d7e0-4855-40ba-b87d-306e397d15e1" + "WESTUS2:20190219T102818Z:db74e5f8-2d6a-43f4-a91f-d60b3468d2af" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Jan 2019 13:50:44 GMT" + "Tue, 19 Feb 2019 10:28:17 GMT" ], "Expires": [ "-1" @@ -2404,7 +2422,63 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7d441bdb-f39a-4ab3-8866-afb225cb9886/resourceGroups/hdicsharprg4220/providers/Microsoft.HDInsight/clusters/hdisdk-http1204/azureasyncoperations/d9fe561d-c678-4cd1-8a73-01764f289081-0?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/d262af65-f7b1-4b63-9c55-4058673d935e/resourceGroups/hdicsharprg5384/providers/Microsoft.HDInsight/clusters/hdisdk-gateway97/azureasyncoperations/35cf29a0-1171-48b3-91e0-c0b0434044b8-0-r?api-version=2018-06-01-preview", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26628.05", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "43dd2e49-f772-488a-9313-837d25dbae56" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "6e426c14-b525-4c2c-b1e4-f499ecc7dec7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11963" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190219T102919Z:6e426c14-b525-4c2c-b1e4-f499ecc7dec7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 19 Feb 2019 10:29:18 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d262af65-f7b1-4b63-9c55-4058673d935e/resourceGroups/hdicsharprg5384/providers/Microsoft.HDInsight/clusters/hdisdk-gateway97/azureasyncoperations/35cf29a0-1171-48b3-91e0-c0b0434044b8-0-r?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2412,7 +2486,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -2423,28 +2497,28 @@ "no-cache" ], "x-ms-request-id": [ - "66078654-6f78-4ae6-8e1b-f878502daa24" + "f5d58f78-77d9-4357-960e-ae52d639e674" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "16bd7c02-94ee-452f-af4f-3aa157094823" + "0a6f23cf-de45-4ead-9a58-463976402235" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" + "11962" ], "x-ms-routing-request-id": [ - "WESTUS2:20190125T135144Z:16bd7c02-94ee-452f-af4f-3aa157094823" + "WESTUS2:20190219T103019Z:0a6f23cf-de45-4ead-9a58-463976402235" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Jan 2019 13:51:43 GMT" + "Tue, 19 Feb 2019 10:30:19 GMT" ], "Content-Length": [ "22" @@ -2460,7 +2534,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7d441bdb-f39a-4ab3-8866-afb225cb9886/resourceGroups/hdicsharprg4220/providers/Microsoft.HDInsight/clusters/hdisdk-http1204/operationresults/d9fe561d-c678-4cd1-8a73-01764f289081-0?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/d262af65-f7b1-4b63-9c55-4058673d935e/resourceGroups/hdicsharprg5384/providers/Microsoft.HDInsight/clusters/hdisdk-gateway97/operationresults/35cf29a0-1171-48b3-91e0-c0b0434044b8-0-r?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2468,7 +2542,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -2479,28 +2553,28 @@ "no-cache" ], "x-ms-request-id": [ - "71ca8660-9ed4-415c-aa1c-d7bdb5c7977d" + "4ed80b23-c1ee-48dd-8d6f-28b909b83bc7" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "c8df1326-72fd-489b-9684-94de332f9bd8" + "9850a466-aa11-4123-b6eb-eb81e573952c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" + "11961" ], "x-ms-routing-request-id": [ - "WESTUS2:20190125T135144Z:c8df1326-72fd-489b-9684-94de332f9bd8" + "WESTUS2:20190219T103019Z:9850a466-aa11-4123-b6eb-eb81e573952c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Jan 2019 13:51:43 GMT" + "Tue, 19 Feb 2019 10:30:19 GMT" ], "Expires": [ "-1" @@ -2515,27 +2589,27 @@ ], "Names": { ".ctor": [ - "admin5274", - "Password19322", - "sshuser5582", - "Password19917", - "2bdd6198-a477-41d5-8780-6b5d58bd8bb8", - "hdicsharprg4220", - "hdicsharpstorage5035", - "hdicsharpmsi9322", - "hdicsharpvault665", - "hdicsharpadls4960", - "default9335", - "storageaccountkey9649" + "admin1131", + "Password1!48", + "sshuser191", + "Password1!222", + "261ea059-4340-4aa2-8dbf-c7b588484904", + "hdicsharprg5384", + "hdicsharpstorage8722", + "hdicsharpmsi1692", + "hdicsharpvault7449", + "hdicsharpadls2970", + "default2395", + "storageaccountkey3871" ], "TestInitialize": [ - "7d441bdb-f39a-4ab3-8866-afb225cb9886" + "d262af65-f7b1-4b63-9c55-4058673d935e" ], - "TestHttpExtended": [ - "hdisdk-http1204" + "TestGetOrUpdateGatewaySettings": [ + "hdisdk-gateway97" ] }, "Variables": { - "SubscriptionId": "7d441bdb-f39a-4ab3-8866-afb225cb9886" + "SubscriptionId": "d262af65-f7b1-4b63-9c55-4058673d935e" } } diff --git a/src/SDKs/HDInsight/Management/Management.HDInsight.Tests/SessionRecords/Management.HDInsight.Tests.ConfigurationOperationTests/TestGetConfigurations.json b/src/SDKs/HDInsight/Management/Management.HDInsight.Tests/SessionRecords/Management.HDInsight.Tests.ConfigurationOperationTests/TestGetConfigurations.json index ebeb2061e4d2..fcf4b09d5dc8 100644 --- a/src/SDKs/HDInsight/Management/Management.HDInsight.Tests/SessionRecords/Management.HDInsight.Tests.ConfigurationOperationTests/TestGetConfigurations.json +++ b/src/SDKs/HDInsight/Management/Management.HDInsight.Tests/SessionRecords/Management.HDInsight.Tests.ConfigurationOperationTests/TestGetConfigurations.json @@ -1,12 +1,12 @@ { "Entries": [ { - "RequestUri": "/subscriptions/b0271e68-72d6-4403-8256-4f71f080d3bf/resourceGroups/hdicsharprg708/providers/Microsoft.HDInsight/clusters/hdisdk-humboldt7928?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/815f6131-5956-4a4c-a3bb-7150b1825909/resourceGroups/hdicsharprg9992/providers/Microsoft.HDInsight/clusters/hdisdk-configs6451?api-version=2018-06-01-preview", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6\",\r\n \"osType\": \"Linux\",\r\n \"tier\": \"Standard\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\",\r\n \"configurations\": {\r\n \"gateway\": {\r\n \"restAuthCredential.isEnabled\": \"true\",\r\n \"restAuthCredential.username\": \"admin739\",\r\n \"restAuthCredential.password\": \"Password1595\"\r\n },\r\n \"hive-site\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"mapred-site\": {\r\n \"key5\": \"value5\",\r\n \"key6\": \"value6\"\r\n },\r\n \"yarn-site\": {\r\n \"key7\": \"value7\",\r\n \"key8\": \"value8\"\r\n }\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Large\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1051\",\r\n \"password\": \"Password13962\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Large\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1051\",\r\n \"password\": \"Password13962\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Small\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1051\",\r\n \"password\": \"Password13962\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage2932.blob.core.windows.net\",\r\n \"isDefault\": true,\r\n \"container\": \"default40\",\r\n \"key\": \"tDy+pJWMPfOMdA7m7X/xGBjTx0LWRy6WHpeQf4TfXCuHoHmKnPNiM2jtTDblV3dkqjWXqBSd6Hqmgc5yDdXPUA==\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6\",\r\n \"osType\": \"Linux\",\r\n \"tier\": \"Standard\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\",\r\n \"configurations\": {\r\n \"gateway\": {\r\n \"restAuthCredential.isEnabled\": \"true\",\r\n \"restAuthCredential.username\": \"admin5472\",\r\n \"restAuthCredential.password\": \"Password15288\"\r\n },\r\n \"hive-site\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"mapred-site\": {\r\n \"key5\": \"value5\",\r\n \"key6\": \"value6\"\r\n },\r\n \"yarn-site\": {\r\n \"key7\": \"value7\",\r\n \"key8\": \"value8\"\r\n }\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Large\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser8205\",\r\n \"password\": \"Password17608\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Large\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser8205\",\r\n \"password\": \"Password17608\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Small\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser8205\",\r\n \"password\": \"Password17608\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage4545.blob.core.windows.net\",\r\n \"isDefault\": true,\r\n \"container\": \"default8714\",\r\n \"key\": \"pRfclMxDj2cGGYACAF5J+H4nkFoYHB3nYGt1YcSLP38oMJwII/oN19x6wigW52id58LSlZb1NhNsExzNaC6hgQ==\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "aefea13b-e629-487e-b388-b7ab110d4d09" + "3d4ca069-ae8a-4db3-ad7a-ee73c46cf057" ], "Accept-Language": [ "en-US" @@ -15,13 +15,13 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "2165" + "2169" ] }, "ResponseHeaders": { @@ -32,22 +32,22 @@ "no-cache" ], "ETag": [ - "\"f2a00ce8-be04-4b7c-9046-5925be9e33c9\"" + "\"b78ed4d8-075f-4c93-b4c0-204cfc2bb5a1\"" ], "x-ms-hdi-clusteruri": [ - "https://management.azure.com/subscriptions/b0271e68-72d6-4403-8256-4f71f080d3bf/resourceGroups/hdicsharprg708/providers/Microsoft.HDInsight/clusters/hdisdk-humboldt7928?api-version=2018-06-01-preview" + "https://management.azure.com/subscriptions/815f6131-5956-4a4c-a3bb-7150b1825909/resourceGroups/hdicsharprg9992/providers/Microsoft.HDInsight/clusters/hdisdk-configs6451?api-version=2018-06-01-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/b0271e68-72d6-4403-8256-4f71f080d3bf/resourceGroups/hdicsharprg708/providers/Microsoft.HDInsight/clusters/hdisdk-humboldt7928/azureasyncoperations/create?api-version=2018-06-01-preview" + "https://management.azure.com:443/subscriptions/815f6131-5956-4a4c-a3bb-7150b1825909/resourceGroups/hdicsharprg9992/providers/Microsoft.HDInsight/clusters/hdisdk-configs6451/azureasyncoperations/create?api-version=2018-06-01-preview" ], "x-ms-request-id": [ - "95625495-81bd-4cf9-9a0f-5ec32007dbf9" + "524a7d30-d12d-41ef-8e44-08fb5d46412d" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "17fc0a1a-ff23-4b44-bd5a-759ff6067cd1" + "3b57368b-83c7-4d47-afad-10e48a5376b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -56,16 +56,16 @@ "1199" ], "x-ms-routing-request-id": [ - "WESTUS2:20190124T151819Z:17fc0a1a-ff23-4b44-bd5a-759ff6067cd1" + "WESTUS2:20190215T064604Z:3b57368b-83c7-4d47-afad-10e48a5376b5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Jan 2019 15:18:19 GMT" + "Fri, 15 Feb 2019 06:46:04 GMT" ], "Content-Length": [ - "1258" + "1257" ], "Content-Type": [ "application/json; charset=utf-8" @@ -74,11 +74,11 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b0271e68-72d6-4403-8256-4f71f080d3bf/resourceGroups/hdicsharprg708/providers/Microsoft.HDInsight/clusters/hdisdk-humboldt7928\",\r\n \"name\": \"hdisdk-humboldt7928\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"f2a00ce8-be04-4b7c-9046-5925be9e33c9\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1812120705.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Large\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1051\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Large\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1051\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Medium\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1051\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2019-01-24T15:18:19.177\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"tier\": \"standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/815f6131-5956-4a4c-a3bb-7150b1825909/resourceGroups/hdicsharprg9992/providers/Microsoft.HDInsight/clusters/hdisdk-configs6451\",\r\n \"name\": \"hdisdk-configs6451\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"b78ed4d8-075f-4c93-b4c0-204cfc2bb5a1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1902132019.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Large\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser8205\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Large\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser8205\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Medium\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser8205\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2019-02-15T06:46:03.813\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"tier\": \"standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b0271e68-72d6-4403-8256-4f71f080d3bf/resourceGroups/hdicsharprg708/providers/Microsoft.HDInsight/clusters/hdisdk-humboldt7928/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/815f6131-5956-4a4c-a3bb-7150b1825909/resourceGroups/hdicsharprg9992/providers/Microsoft.HDInsight/clusters/hdisdk-configs6451/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -86,7 +86,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -97,13 +97,13 @@ "no-cache" ], "x-ms-request-id": [ - "6a674132-34c0-44c0-bd04-db23f1271e6c" + "a0be72a6-e416-487c-b56e-233260775142" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "a9702a7a-5235-477d-8d82-f04c4ad07f4f" + "309068e7-885e-43bb-a5d3-f0759808289c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -112,13 +112,13 @@ "11999" ], "x-ms-routing-request-id": [ - "WESTUS2:20190124T151850Z:a9702a7a-5235-477d-8d82-f04c4ad07f4f" + "WESTUS2:20190215T064635Z:309068e7-885e-43bb-a5d3-f0759808289c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Jan 2019 15:18:49 GMT" + "Fri, 15 Feb 2019 06:46:34 GMT" ], "Content-Length": [ "23" @@ -134,7 +134,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b0271e68-72d6-4403-8256-4f71f080d3bf/resourceGroups/hdicsharprg708/providers/Microsoft.HDInsight/clusters/hdisdk-humboldt7928/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/815f6131-5956-4a4c-a3bb-7150b1825909/resourceGroups/hdicsharprg9992/providers/Microsoft.HDInsight/clusters/hdisdk-configs6451/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -142,7 +142,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -153,13 +153,13 @@ "no-cache" ], "x-ms-request-id": [ - "445edfc1-5cc4-48bb-8f39-2d647e922cec" + "fc4159d8-6e5f-4352-aa5b-5ce07ce2cb47" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "0f30f1bc-e222-466e-8e0c-a008cf0f5413" + "da779b1b-c5fd-491f-8ad1-c88546c172dc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -168,13 +168,13 @@ "11998" ], "x-ms-routing-request-id": [ - "WESTUS2:20190124T151921Z:0f30f1bc-e222-466e-8e0c-a008cf0f5413" + "WESTUS2:20190215T064706Z:da779b1b-c5fd-491f-8ad1-c88546c172dc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Jan 2019 15:19:21 GMT" + "Fri, 15 Feb 2019 06:47:05 GMT" ], "Content-Length": [ "23" @@ -190,7 +190,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b0271e68-72d6-4403-8256-4f71f080d3bf/resourceGroups/hdicsharprg708/providers/Microsoft.HDInsight/clusters/hdisdk-humboldt7928/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/815f6131-5956-4a4c-a3bb-7150b1825909/resourceGroups/hdicsharprg9992/providers/Microsoft.HDInsight/clusters/hdisdk-configs6451/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -198,7 +198,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -209,13 +209,13 @@ "no-cache" ], "x-ms-request-id": [ - "4ab9867e-904e-45a2-ac95-1e60aec20915" + "a8916aab-9df3-4b79-ac6a-827ffa9463e8" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "b127f886-9444-4f09-8fab-d778a32db7e3" + "a41c666c-ec36-4112-b69b-7e4e8ba09bcb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -224,13 +224,13 @@ "11997" ], "x-ms-routing-request-id": [ - "WESTUS2:20190124T151951Z:b127f886-9444-4f09-8fab-d778a32db7e3" + "WESTUS2:20190215T064737Z:a41c666c-ec36-4112-b69b-7e4e8ba09bcb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Jan 2019 15:19:51 GMT" + "Fri, 15 Feb 2019 06:47:37 GMT" ], "Content-Length": [ "23" @@ -246,7 +246,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b0271e68-72d6-4403-8256-4f71f080d3bf/resourceGroups/hdicsharprg708/providers/Microsoft.HDInsight/clusters/hdisdk-humboldt7928/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/815f6131-5956-4a4c-a3bb-7150b1825909/resourceGroups/hdicsharprg9992/providers/Microsoft.HDInsight/clusters/hdisdk-configs6451/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -254,7 +254,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -265,13 +265,13 @@ "no-cache" ], "x-ms-request-id": [ - "a613c1d9-f9e3-411e-8da0-664de769f9c1" + "3c3b3978-ecad-4efe-ad24-fa90fbe65ef7" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "fed868aa-4cdc-4233-8712-dc38b4a6c55b" + "cee53080-0ff7-414a-a290-7a45a7a611fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -280,13 +280,13 @@ "11996" ], "x-ms-routing-request-id": [ - "WESTUS2:20190124T152022Z:fed868aa-4cdc-4233-8712-dc38b4a6c55b" + "WESTUS2:20190215T064808Z:cee53080-0ff7-414a-a290-7a45a7a611fa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Jan 2019 15:20:22 GMT" + "Fri, 15 Feb 2019 06:48:07 GMT" ], "Content-Length": [ "23" @@ -302,7 +302,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b0271e68-72d6-4403-8256-4f71f080d3bf/resourceGroups/hdicsharprg708/providers/Microsoft.HDInsight/clusters/hdisdk-humboldt7928/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/815f6131-5956-4a4c-a3bb-7150b1825909/resourceGroups/hdicsharprg9992/providers/Microsoft.HDInsight/clusters/hdisdk-configs6451/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -310,7 +310,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -321,13 +321,13 @@ "no-cache" ], "x-ms-request-id": [ - "020c1358-bcc0-4bdf-b7da-619736015391" + "2dda57b3-21cf-486c-b148-04153f73db8e" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "ba27f44d-645c-4f83-a67d-1b95ee61cb1f" + "cdcc40f9-6734-4988-964b-113443b2b7d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -336,13 +336,13 @@ "11995" ], "x-ms-routing-request-id": [ - "WESTUS2:20190124T152053Z:ba27f44d-645c-4f83-a67d-1b95ee61cb1f" + "WESTUS2:20190215T064839Z:cdcc40f9-6734-4988-964b-113443b2b7d6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Jan 2019 15:20:52 GMT" + "Fri, 15 Feb 2019 06:48:38 GMT" ], "Content-Length": [ "23" @@ -358,7 +358,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b0271e68-72d6-4403-8256-4f71f080d3bf/resourceGroups/hdicsharprg708/providers/Microsoft.HDInsight/clusters/hdisdk-humboldt7928/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/815f6131-5956-4a4c-a3bb-7150b1825909/resourceGroups/hdicsharprg9992/providers/Microsoft.HDInsight/clusters/hdisdk-configs6451/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -366,7 +366,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -377,13 +377,13 @@ "no-cache" ], "x-ms-request-id": [ - "1feed22f-1388-44fc-95fd-dd166ed88258" + "d8eaf7a9-5852-4efc-8c1b-d542b1200045" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "42ef7ec3-9ab9-45ce-8a7f-1b76690166a9" + "694d560f-5e23-41d8-be4c-a49bcf3f24b8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -392,13 +392,13 @@ "11994" ], "x-ms-routing-request-id": [ - "WESTUS2:20190124T152123Z:42ef7ec3-9ab9-45ce-8a7f-1b76690166a9" + "WESTUS2:20190215T064910Z:694d560f-5e23-41d8-be4c-a49bcf3f24b8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Jan 2019 15:21:22 GMT" + "Fri, 15 Feb 2019 06:49:09 GMT" ], "Content-Length": [ "23" @@ -414,7 +414,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b0271e68-72d6-4403-8256-4f71f080d3bf/resourceGroups/hdicsharprg708/providers/Microsoft.HDInsight/clusters/hdisdk-humboldt7928/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/815f6131-5956-4a4c-a3bb-7150b1825909/resourceGroups/hdicsharprg9992/providers/Microsoft.HDInsight/clusters/hdisdk-configs6451/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -422,7 +422,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -433,13 +433,13 @@ "no-cache" ], "x-ms-request-id": [ - "7f03d643-39b7-4fba-849d-de8a42efef83" + "3bb45152-d5f3-458c-b21f-fb61c98f83f7" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "0e4e53d5-112b-47df-a319-3e9cc06bcd90" + "d7bf2da6-7820-4bd9-ab60-a57e9a3b3585" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -448,13 +448,13 @@ "11993" ], "x-ms-routing-request-id": [ - "WESTUS2:20190124T152154Z:0e4e53d5-112b-47df-a319-3e9cc06bcd90" + "WESTUS2:20190215T064940Z:d7bf2da6-7820-4bd9-ab60-a57e9a3b3585" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Jan 2019 15:21:53 GMT" + "Fri, 15 Feb 2019 06:49:40 GMT" ], "Content-Length": [ "23" @@ -470,7 +470,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b0271e68-72d6-4403-8256-4f71f080d3bf/resourceGroups/hdicsharprg708/providers/Microsoft.HDInsight/clusters/hdisdk-humboldt7928/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/815f6131-5956-4a4c-a3bb-7150b1825909/resourceGroups/hdicsharprg9992/providers/Microsoft.HDInsight/clusters/hdisdk-configs6451/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -478,7 +478,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -489,13 +489,13 @@ "no-cache" ], "x-ms-request-id": [ - "fd87197c-4f27-4cac-9273-14d322db8827" + "a59c288d-84d1-4a24-a81c-513679d35125" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "aafc437b-49a3-4a6b-834b-0e56d88bfe82" + "78175f70-de7c-4072-845e-c2066f0e0611" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -504,13 +504,13 @@ "11992" ], "x-ms-routing-request-id": [ - "WESTUS2:20190124T152225Z:aafc437b-49a3-4a6b-834b-0e56d88bfe82" + "WESTUS2:20190215T065011Z:78175f70-de7c-4072-845e-c2066f0e0611" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Jan 2019 15:22:25 GMT" + "Fri, 15 Feb 2019 06:50:10 GMT" ], "Content-Length": [ "23" @@ -526,7 +526,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b0271e68-72d6-4403-8256-4f71f080d3bf/resourceGroups/hdicsharprg708/providers/Microsoft.HDInsight/clusters/hdisdk-humboldt7928/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/815f6131-5956-4a4c-a3bb-7150b1825909/resourceGroups/hdicsharprg9992/providers/Microsoft.HDInsight/clusters/hdisdk-configs6451/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -534,7 +534,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -545,13 +545,13 @@ "no-cache" ], "x-ms-request-id": [ - "cabf131c-6b4a-4686-9611-4151b0062da0" + "fc533128-34e1-48d1-ba16-dded486337be" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "cf67a605-5c88-4163-a1c9-4575fc500d3f" + "881fae17-801a-47f6-b361-b37310f38725" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -560,13 +560,13 @@ "11991" ], "x-ms-routing-request-id": [ - "WESTUS2:20190124T152255Z:cf67a605-5c88-4163-a1c9-4575fc500d3f" + "WESTUS2:20190215T065042Z:881fae17-801a-47f6-b361-b37310f38725" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Jan 2019 15:22:55 GMT" + "Fri, 15 Feb 2019 06:50:42 GMT" ], "Content-Length": [ "23" @@ -582,7 +582,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b0271e68-72d6-4403-8256-4f71f080d3bf/resourceGroups/hdicsharprg708/providers/Microsoft.HDInsight/clusters/hdisdk-humboldt7928/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/815f6131-5956-4a4c-a3bb-7150b1825909/resourceGroups/hdicsharprg9992/providers/Microsoft.HDInsight/clusters/hdisdk-configs6451/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -590,7 +590,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -601,13 +601,13 @@ "no-cache" ], "x-ms-request-id": [ - "a34a7841-1463-4d4a-b8ff-ba4715eb7976" + "94161c9a-9042-42ab-b693-4e5b97daa556" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "67dd4905-cde3-4f6d-be06-3e8b79edde59" + "f3471598-d359-4241-b4d6-4b4b87373f22" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -616,13 +616,13 @@ "11990" ], "x-ms-routing-request-id": [ - "WESTUS2:20190124T152326Z:67dd4905-cde3-4f6d-be06-3e8b79edde59" + "WESTUS2:20190215T065113Z:f3471598-d359-4241-b4d6-4b4b87373f22" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Jan 2019 15:23:26 GMT" + "Fri, 15 Feb 2019 06:51:12 GMT" ], "Content-Length": [ "23" @@ -638,7 +638,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b0271e68-72d6-4403-8256-4f71f080d3bf/resourceGroups/hdicsharprg708/providers/Microsoft.HDInsight/clusters/hdisdk-humboldt7928/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/815f6131-5956-4a4c-a3bb-7150b1825909/resourceGroups/hdicsharprg9992/providers/Microsoft.HDInsight/clusters/hdisdk-configs6451/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -646,7 +646,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -657,13 +657,13 @@ "no-cache" ], "x-ms-request-id": [ - "82d94557-8e31-4578-9cdd-4a9e70021fea" + "ef1b0fd0-b709-4901-90a5-75dad3c8e4b7" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "28b62f81-9f63-4142-8e33-ecdd92749bd0" + "43f270b3-7294-4043-8d47-57f19deee716" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -672,13 +672,13 @@ "11989" ], "x-ms-routing-request-id": [ - "WESTUS2:20190124T152356Z:28b62f81-9f63-4142-8e33-ecdd92749bd0" + "WESTUS2:20190215T065144Z:43f270b3-7294-4043-8d47-57f19deee716" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Jan 2019 15:23:56 GMT" + "Fri, 15 Feb 2019 06:51:44 GMT" ], "Content-Length": [ "23" @@ -694,7 +694,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b0271e68-72d6-4403-8256-4f71f080d3bf/resourceGroups/hdicsharprg708/providers/Microsoft.HDInsight/clusters/hdisdk-humboldt7928/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/815f6131-5956-4a4c-a3bb-7150b1825909/resourceGroups/hdicsharprg9992/providers/Microsoft.HDInsight/clusters/hdisdk-configs6451/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -702,7 +702,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -713,13 +713,13 @@ "no-cache" ], "x-ms-request-id": [ - "99e15084-31cb-49eb-9a4a-82b9f14c6e7a" + "95494f50-9845-4a16-b16e-ad58e1e8e846" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "9d02be65-adab-468a-aa1c-4a920717d678" + "7b1556d3-adf3-4b89-8657-e4d8cd0b4741" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -728,13 +728,13 @@ "11988" ], "x-ms-routing-request-id": [ - "WESTUS2:20190124T152431Z:9d02be65-adab-468a-aa1c-4a920717d678" + "WESTUS2:20190215T065215Z:7b1556d3-adf3-4b89-8657-e4d8cd0b4741" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Jan 2019 15:24:30 GMT" + "Fri, 15 Feb 2019 06:52:14 GMT" ], "Content-Length": [ "23" @@ -750,7 +750,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b0271e68-72d6-4403-8256-4f71f080d3bf/resourceGroups/hdicsharprg708/providers/Microsoft.HDInsight/clusters/hdisdk-humboldt7928/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/815f6131-5956-4a4c-a3bb-7150b1825909/resourceGroups/hdicsharprg9992/providers/Microsoft.HDInsight/clusters/hdisdk-configs6451/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -758,7 +758,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -769,13 +769,13 @@ "no-cache" ], "x-ms-request-id": [ - "02fcea22-cdfb-4d9b-8cbe-f54e33ed562e" + "021a0352-a4e8-47f7-a28c-9511a5335d63" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "65492303-be61-449c-8bb1-7d4e9edf9d0a" + "a7e379d0-20c3-442d-8ce4-1247c83aae3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -784,13 +784,13 @@ "11987" ], "x-ms-routing-request-id": [ - "WESTUS2:20190124T152501Z:65492303-be61-449c-8bb1-7d4e9edf9d0a" + "WESTUS2:20190215T065246Z:a7e379d0-20c3-442d-8ce4-1247c83aae3d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Jan 2019 15:25:00 GMT" + "Fri, 15 Feb 2019 06:52:45 GMT" ], "Content-Length": [ "23" @@ -806,7 +806,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b0271e68-72d6-4403-8256-4f71f080d3bf/resourceGroups/hdicsharprg708/providers/Microsoft.HDInsight/clusters/hdisdk-humboldt7928/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/815f6131-5956-4a4c-a3bb-7150b1825909/resourceGroups/hdicsharprg9992/providers/Microsoft.HDInsight/clusters/hdisdk-configs6451/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -814,7 +814,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -825,13 +825,13 @@ "no-cache" ], "x-ms-request-id": [ - "05c13160-23d8-473c-9bff-2d1b4706a705" + "babbf0f9-c049-43aa-9e01-fb8d6ac98268" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "b5d5b62e-196a-42a6-858c-146a28d06014" + "02e6834e-84de-43ad-9717-8bacace66522" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -840,13 +840,13 @@ "11986" ], "x-ms-routing-request-id": [ - "WESTUS2:20190124T152531Z:b5d5b62e-196a-42a6-858c-146a28d06014" + "WESTUS2:20190215T065317Z:02e6834e-84de-43ad-9717-8bacace66522" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Jan 2019 15:25:31 GMT" + "Fri, 15 Feb 2019 06:53:17 GMT" ], "Content-Length": [ "23" @@ -862,7 +862,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b0271e68-72d6-4403-8256-4f71f080d3bf/resourceGroups/hdicsharprg708/providers/Microsoft.HDInsight/clusters/hdisdk-humboldt7928/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/815f6131-5956-4a4c-a3bb-7150b1825909/resourceGroups/hdicsharprg9992/providers/Microsoft.HDInsight/clusters/hdisdk-configs6451/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -870,7 +870,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -881,13 +881,13 @@ "no-cache" ], "x-ms-request-id": [ - "c86b3e55-7ae7-49b4-9e4d-597646180677" + "bdd277ac-8faf-4b7e-8716-e029d75e5472" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "7e626ce9-f33e-4dcf-83db-e85f224fe198" + "1cb0c868-16bc-4c95-8762-9e0882552f4e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -896,13 +896,13 @@ "11985" ], "x-ms-routing-request-id": [ - "WESTUS2:20190124T152602Z:7e626ce9-f33e-4dcf-83db-e85f224fe198" + "WESTUS2:20190215T065348Z:1cb0c868-16bc-4c95-8762-9e0882552f4e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Jan 2019 15:26:01 GMT" + "Fri, 15 Feb 2019 06:53:48 GMT" ], "Content-Length": [ "23" @@ -918,7 +918,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b0271e68-72d6-4403-8256-4f71f080d3bf/resourceGroups/hdicsharprg708/providers/Microsoft.HDInsight/clusters/hdisdk-humboldt7928/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/815f6131-5956-4a4c-a3bb-7150b1825909/resourceGroups/hdicsharprg9992/providers/Microsoft.HDInsight/clusters/hdisdk-configs6451/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -926,7 +926,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -937,13 +937,13 @@ "no-cache" ], "x-ms-request-id": [ - "57a8661e-161c-4551-ac83-7933457d11c2" + "41cd3e13-d1df-4ae6-953e-03eb56602caf" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "0c15f079-2e72-4c49-95ce-240d61b410a6" + "b193ffcc-df1d-422f-bb3f-aeb84e07107f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -952,13 +952,13 @@ "11984" ], "x-ms-routing-request-id": [ - "WESTUS2:20190124T152632Z:0c15f079-2e72-4c49-95ce-240d61b410a6" + "WESTUS2:20190215T065419Z:b193ffcc-df1d-422f-bb3f-aeb84e07107f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Jan 2019 15:26:31 GMT" + "Fri, 15 Feb 2019 06:54:18 GMT" ], "Content-Length": [ "23" @@ -974,7 +974,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b0271e68-72d6-4403-8256-4f71f080d3bf/resourceGroups/hdicsharprg708/providers/Microsoft.HDInsight/clusters/hdisdk-humboldt7928/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/815f6131-5956-4a4c-a3bb-7150b1825909/resourceGroups/hdicsharprg9992/providers/Microsoft.HDInsight/clusters/hdisdk-configs6451/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -982,7 +982,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -993,13 +993,13 @@ "no-cache" ], "x-ms-request-id": [ - "0add4837-2005-4439-979f-f20d8b61496b" + "81a16956-f996-4ec8-a88c-75688ca6e139" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "978a8a0f-4243-42f8-bebf-886c973b9420" + "9225cf36-1d28-455d-99d1-968e3e3be265" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1008,13 +1008,13 @@ "11983" ], "x-ms-routing-request-id": [ - "WESTUS2:20190124T152703Z:978a8a0f-4243-42f8-bebf-886c973b9420" + "WESTUS2:20190215T065449Z:9225cf36-1d28-455d-99d1-968e3e3be265" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Jan 2019 15:27:02 GMT" + "Fri, 15 Feb 2019 06:54:48 GMT" ], "Content-Length": [ "23" @@ -1030,7 +1030,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b0271e68-72d6-4403-8256-4f71f080d3bf/resourceGroups/hdicsharprg708/providers/Microsoft.HDInsight/clusters/hdisdk-humboldt7928/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/815f6131-5956-4a4c-a3bb-7150b1825909/resourceGroups/hdicsharprg9992/providers/Microsoft.HDInsight/clusters/hdisdk-configs6451/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1038,7 +1038,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -1049,13 +1049,13 @@ "no-cache" ], "x-ms-request-id": [ - "a21464c8-411d-4b5e-9968-e2879d79f627" + "b7a262fb-7d07-48ff-afc5-761614186b3d" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "a29b6318-bb0d-4749-8c87-f26d0e8b24a9" + "8b6a45b5-b0d0-42d0-958b-a674b0a35dd5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1064,13 +1064,13 @@ "11982" ], "x-ms-routing-request-id": [ - "WESTUS2:20190124T152733Z:a29b6318-bb0d-4749-8c87-f26d0e8b24a9" + "WESTUS2:20190215T065520Z:8b6a45b5-b0d0-42d0-958b-a674b0a35dd5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Jan 2019 15:27:32 GMT" + "Fri, 15 Feb 2019 06:55:20 GMT" ], "Content-Length": [ "23" @@ -1086,7 +1086,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b0271e68-72d6-4403-8256-4f71f080d3bf/resourceGroups/hdicsharprg708/providers/Microsoft.HDInsight/clusters/hdisdk-humboldt7928/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/815f6131-5956-4a4c-a3bb-7150b1825909/resourceGroups/hdicsharprg9992/providers/Microsoft.HDInsight/clusters/hdisdk-configs6451/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1094,7 +1094,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -1105,13 +1105,13 @@ "no-cache" ], "x-ms-request-id": [ - "812e0418-79e3-4dcc-b44a-34f8fef3aea1" + "5273f6cf-54ec-40ae-a202-5dfe1e5e4b15" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "77d4d83c-685e-44f5-8637-f72baed2108f" + "0ae541cb-6d09-4235-8456-d3026ab62edf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1120,13 +1120,13 @@ "11981" ], "x-ms-routing-request-id": [ - "WESTUS2:20190124T152804Z:77d4d83c-685e-44f5-8637-f72baed2108f" + "WESTUS2:20190215T065551Z:0ae541cb-6d09-4235-8456-d3026ab62edf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Jan 2019 15:28:04 GMT" + "Fri, 15 Feb 2019 06:55:51 GMT" ], "Content-Length": [ "23" @@ -1142,7 +1142,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b0271e68-72d6-4403-8256-4f71f080d3bf/resourceGroups/hdicsharprg708/providers/Microsoft.HDInsight/clusters/hdisdk-humboldt7928/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/815f6131-5956-4a4c-a3bb-7150b1825909/resourceGroups/hdicsharprg9992/providers/Microsoft.HDInsight/clusters/hdisdk-configs6451/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1150,7 +1150,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -1161,13 +1161,13 @@ "no-cache" ], "x-ms-request-id": [ - "5d284472-5950-4f27-a550-cca5c897bc3c" + "cd2bd94e-1b66-4c9d-b28d-8c912df9e02e" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "0761d766-8dc4-40b8-b99e-d4622c365b1b" + "f68b68a0-f6cb-4aaf-a898-619e7c1e7514" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1176,13 +1176,13 @@ "11980" ], "x-ms-routing-request-id": [ - "WESTUS2:20190124T152835Z:0761d766-8dc4-40b8-b99e-d4622c365b1b" + "WESTUS2:20190215T065622Z:f68b68a0-f6cb-4aaf-a898-619e7c1e7514" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Jan 2019 15:28:34 GMT" + "Fri, 15 Feb 2019 06:56:22 GMT" ], "Content-Length": [ "23" @@ -1198,7 +1198,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b0271e68-72d6-4403-8256-4f71f080d3bf/resourceGroups/hdicsharprg708/providers/Microsoft.HDInsight/clusters/hdisdk-humboldt7928/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/815f6131-5956-4a4c-a3bb-7150b1825909/resourceGroups/hdicsharprg9992/providers/Microsoft.HDInsight/clusters/hdisdk-configs6451/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1206,7 +1206,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -1217,13 +1217,13 @@ "no-cache" ], "x-ms-request-id": [ - "ee81793a-969a-48ed-945f-047cf223f61b" + "870a02bd-c607-4f3b-bfb7-9be26f04e5cc" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "84858da4-39ed-4a6b-88f5-d1ed65964870" + "0bdc273a-d9b7-4249-911c-7e4d671df215" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1232,13 +1232,13 @@ "11979" ], "x-ms-routing-request-id": [ - "WESTUS2:20190124T152906Z:84858da4-39ed-4a6b-88f5-d1ed65964870" + "WESTUS2:20190215T065653Z:0bdc273a-d9b7-4249-911c-7e4d671df215" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Jan 2019 15:29:05 GMT" + "Fri, 15 Feb 2019 06:56:53 GMT" ], "Content-Length": [ "23" @@ -1254,7 +1254,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b0271e68-72d6-4403-8256-4f71f080d3bf/resourceGroups/hdicsharprg708/providers/Microsoft.HDInsight/clusters/hdisdk-humboldt7928/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/815f6131-5956-4a4c-a3bb-7150b1825909/resourceGroups/hdicsharprg9992/providers/Microsoft.HDInsight/clusters/hdisdk-configs6451/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1262,7 +1262,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -1273,13 +1273,13 @@ "no-cache" ], "x-ms-request-id": [ - "10a282f0-3350-49bd-a152-227176fdb168" + "e9e4c6c1-f60b-4097-bdf7-50eabd005a30" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "e241604f-c296-4891-955f-250d3699428e" + "2a6abd81-0218-4493-8b15-777e2862f9af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1288,13 +1288,13 @@ "11978" ], "x-ms-routing-request-id": [ - "WESTUS2:20190124T152936Z:e241604f-c296-4891-955f-250d3699428e" + "WESTUS2:20190215T065724Z:2a6abd81-0218-4493-8b15-777e2862f9af" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Jan 2019 15:29:36 GMT" + "Fri, 15 Feb 2019 06:57:23 GMT" ], "Content-Length": [ "23" @@ -1310,7 +1310,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b0271e68-72d6-4403-8256-4f71f080d3bf/resourceGroups/hdicsharprg708/providers/Microsoft.HDInsight/clusters/hdisdk-humboldt7928/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/815f6131-5956-4a4c-a3bb-7150b1825909/resourceGroups/hdicsharprg9992/providers/Microsoft.HDInsight/clusters/hdisdk-configs6451/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1318,7 +1318,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -1329,13 +1329,13 @@ "no-cache" ], "x-ms-request-id": [ - "505d3781-1f09-4fb0-ad84-99410bcb6f09" + "bbe24a44-3a11-4355-aac2-7236e456349b" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "28bedd38-1b58-43f7-9f99-8b82284b2847" + "5a3fa967-0f68-4bc5-ad61-45fc23a60f2d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1344,13 +1344,13 @@ "11977" ], "x-ms-routing-request-id": [ - "WESTUS2:20190124T153007Z:28bedd38-1b58-43f7-9f99-8b82284b2847" + "WESTUS2:20190215T065755Z:5a3fa967-0f68-4bc5-ad61-45fc23a60f2d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Jan 2019 15:30:06 GMT" + "Fri, 15 Feb 2019 06:57:54 GMT" ], "Content-Length": [ "23" @@ -1366,7 +1366,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b0271e68-72d6-4403-8256-4f71f080d3bf/resourceGroups/hdicsharprg708/providers/Microsoft.HDInsight/clusters/hdisdk-humboldt7928/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/815f6131-5956-4a4c-a3bb-7150b1825909/resourceGroups/hdicsharprg9992/providers/Microsoft.HDInsight/clusters/hdisdk-configs6451/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1374,7 +1374,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -1385,13 +1385,13 @@ "no-cache" ], "x-ms-request-id": [ - "df01cc91-4f2e-431b-9955-0a4b95ac13ec" + "97914f49-2161-4eb6-b556-880b56bf3c44" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "c02010a5-920b-4c6e-aea0-ef2045358fa7" + "b0c09dc3-14b3-4237-8ee1-095c04bf70e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1400,13 +1400,13 @@ "11976" ], "x-ms-routing-request-id": [ - "WESTUS2:20190124T153037Z:c02010a5-920b-4c6e-aea0-ef2045358fa7" + "WESTUS2:20190215T065826Z:b0c09dc3-14b3-4237-8ee1-095c04bf70e4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Jan 2019 15:30:37 GMT" + "Fri, 15 Feb 2019 06:58:26 GMT" ], "Content-Length": [ "23" @@ -1422,7 +1422,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b0271e68-72d6-4403-8256-4f71f080d3bf/resourceGroups/hdicsharprg708/providers/Microsoft.HDInsight/clusters/hdisdk-humboldt7928/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/815f6131-5956-4a4c-a3bb-7150b1825909/resourceGroups/hdicsharprg9992/providers/Microsoft.HDInsight/clusters/hdisdk-configs6451/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1430,7 +1430,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -1441,13 +1441,13 @@ "no-cache" ], "x-ms-request-id": [ - "d76ad29f-8094-4fb6-b44f-51fa2c741f02" + "654479be-bdff-4613-8688-be18218cad3b" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "c8a2f48e-f292-4c30-aca7-d35103e67efd" + "2d097756-9a01-4059-9fe0-c498b8990b87" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1456,13 +1456,13 @@ "11975" ], "x-ms-routing-request-id": [ - "WESTUS2:20190124T153108Z:c8a2f48e-f292-4c30-aca7-d35103e67efd" + "WESTUS2:20190215T065857Z:2d097756-9a01-4059-9fe0-c498b8990b87" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Jan 2019 15:31:07 GMT" + "Fri, 15 Feb 2019 06:58:57 GMT" ], "Content-Length": [ "23" @@ -1478,7 +1478,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b0271e68-72d6-4403-8256-4f71f080d3bf/resourceGroups/hdicsharprg708/providers/Microsoft.HDInsight/clusters/hdisdk-humboldt7928/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/815f6131-5956-4a4c-a3bb-7150b1825909/resourceGroups/hdicsharprg9992/providers/Microsoft.HDInsight/clusters/hdisdk-configs6451/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1486,7 +1486,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -1497,13 +1497,13 @@ "no-cache" ], "x-ms-request-id": [ - "37a9c10c-3140-473f-98bf-e1589b607a8f" + "5f162ff1-6497-47ac-8253-27f7346d8ef0" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "221b4efe-7d0f-427b-ae1c-75a25d1cb100" + "a883b7bd-cb49-4fea-b456-d55279a4ff47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1512,13 +1512,13 @@ "11974" ], "x-ms-routing-request-id": [ - "WESTUS2:20190124T153138Z:221b4efe-7d0f-427b-ae1c-75a25d1cb100" + "WESTUS2:20190215T065928Z:a883b7bd-cb49-4fea-b456-d55279a4ff47" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Jan 2019 15:31:38 GMT" + "Fri, 15 Feb 2019 06:59:27 GMT" ], "Content-Length": [ "23" @@ -1534,7 +1534,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b0271e68-72d6-4403-8256-4f71f080d3bf/resourceGroups/hdicsharprg708/providers/Microsoft.HDInsight/clusters/hdisdk-humboldt7928/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/815f6131-5956-4a4c-a3bb-7150b1825909/resourceGroups/hdicsharprg9992/providers/Microsoft.HDInsight/clusters/hdisdk-configs6451/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1542,7 +1542,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -1553,13 +1553,13 @@ "no-cache" ], "x-ms-request-id": [ - "b1705317-fade-430d-ad69-68b6bd0c7a8d" + "31576f62-0e3c-4c11-aa5a-5368916d7513" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "dac80cee-5cd3-4243-b005-418a000ebaa0" + "657327c1-867f-4734-99b3-8a748845444c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1568,13 +1568,13 @@ "11973" ], "x-ms-routing-request-id": [ - "WESTUS2:20190124T153209Z:dac80cee-5cd3-4243-b005-418a000ebaa0" + "WESTUS2:20190215T065959Z:657327c1-867f-4734-99b3-8a748845444c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Jan 2019 15:32:08 GMT" + "Fri, 15 Feb 2019 06:59:58 GMT" ], "Content-Length": [ "23" @@ -1590,7 +1590,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b0271e68-72d6-4403-8256-4f71f080d3bf/resourceGroups/hdicsharprg708/providers/Microsoft.HDInsight/clusters/hdisdk-humboldt7928/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/815f6131-5956-4a4c-a3bb-7150b1825909/resourceGroups/hdicsharprg9992/providers/Microsoft.HDInsight/clusters/hdisdk-configs6451/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1598,7 +1598,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -1609,13 +1609,13 @@ "no-cache" ], "x-ms-request-id": [ - "c9311519-bef4-4b6c-8d22-dfb6368c3099" + "5b65cdea-1269-447c-8847-f4def71d3e90" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "699c5437-3668-41df-b899-4fb2bab4ae27" + "703c5509-f66c-42e6-a089-db3d21b71693" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1624,13 +1624,13 @@ "11972" ], "x-ms-routing-request-id": [ - "WESTUS2:20190124T153240Z:699c5437-3668-41df-b899-4fb2bab4ae27" + "WESTUS2:20190215T070030Z:703c5509-f66c-42e6-a089-db3d21b71693" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Jan 2019 15:32:39 GMT" + "Fri, 15 Feb 2019 07:00:29 GMT" ], "Content-Length": [ "23" @@ -1646,7 +1646,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b0271e68-72d6-4403-8256-4f71f080d3bf/resourceGroups/hdicsharprg708/providers/Microsoft.HDInsight/clusters/hdisdk-humboldt7928/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/815f6131-5956-4a4c-a3bb-7150b1825909/resourceGroups/hdicsharprg9992/providers/Microsoft.HDInsight/clusters/hdisdk-configs6451/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1654,7 +1654,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -1665,13 +1665,13 @@ "no-cache" ], "x-ms-request-id": [ - "f3d1c302-2bf0-440b-9c78-9667be370820" + "2914bd15-442b-4ca3-8464-828cad6a51f6" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "a3a93c54-7f93-420c-aa88-da757b7b61a5" + "c4b41acb-571c-4825-9ace-85ec0d0100c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1680,13 +1680,13 @@ "11971" ], "x-ms-routing-request-id": [ - "WESTUS2:20190124T153314Z:a3a93c54-7f93-420c-aa88-da757b7b61a5" + "WESTUS2:20190215T070101Z:c4b41acb-571c-4825-9ace-85ec0d0100c5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Jan 2019 15:33:14 GMT" + "Fri, 15 Feb 2019 07:01:00 GMT" ], "Content-Length": [ "23" @@ -1702,7 +1702,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b0271e68-72d6-4403-8256-4f71f080d3bf/resourceGroups/hdicsharprg708/providers/Microsoft.HDInsight/clusters/hdisdk-humboldt7928/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/815f6131-5956-4a4c-a3bb-7150b1825909/resourceGroups/hdicsharprg9992/providers/Microsoft.HDInsight/clusters/hdisdk-configs6451/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1710,7 +1710,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -1721,13 +1721,13 @@ "no-cache" ], "x-ms-request-id": [ - "f5ec2c7d-3485-4424-85dc-b20c31777c8d" + "1e150b78-d830-4236-9ce0-df5c39473657" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "29a2f3dc-d636-4232-b604-0f7947ada34a" + "ae5fb04e-4fc8-45f0-8cfc-0539755492d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1736,13 +1736,13 @@ "11970" ], "x-ms-routing-request-id": [ - "WESTUS2:20190124T153355Z:29a2f3dc-d636-4232-b604-0f7947ada34a" + "WESTUS2:20190215T070132Z:ae5fb04e-4fc8-45f0-8cfc-0539755492d9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Jan 2019 15:33:55 GMT" + "Fri, 15 Feb 2019 07:01:31 GMT" ], "Content-Length": [ "23" @@ -1758,7 +1758,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b0271e68-72d6-4403-8256-4f71f080d3bf/resourceGroups/hdicsharprg708/providers/Microsoft.HDInsight/clusters/hdisdk-humboldt7928/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/815f6131-5956-4a4c-a3bb-7150b1825909/resourceGroups/hdicsharprg9992/providers/Microsoft.HDInsight/clusters/hdisdk-configs6451/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1766,7 +1766,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -1777,13 +1777,13 @@ "no-cache" ], "x-ms-request-id": [ - "53fd0c55-5130-4305-b447-70a89b75b7e9" + "60297443-bd5b-465e-bc38-2a3fc143a3c3" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "8307ef1c-d29a-4e57-aab4-f29454a07f71" + "73919264-a749-42f0-a558-f434b893a304" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1792,13 +1792,13 @@ "11969" ], "x-ms-routing-request-id": [ - "WESTUS2:20190124T153426Z:8307ef1c-d29a-4e57-aab4-f29454a07f71" + "WESTUS2:20190215T070203Z:73919264-a749-42f0-a558-f434b893a304" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Jan 2019 15:34:25 GMT" + "Fri, 15 Feb 2019 07:02:02 GMT" ], "Content-Length": [ "23" @@ -1814,7 +1814,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b0271e68-72d6-4403-8256-4f71f080d3bf/resourceGroups/hdicsharprg708/providers/Microsoft.HDInsight/clusters/hdisdk-humboldt7928/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/815f6131-5956-4a4c-a3bb-7150b1825909/resourceGroups/hdicsharprg9992/providers/Microsoft.HDInsight/clusters/hdisdk-configs6451/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1822,7 +1822,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -1833,13 +1833,13 @@ "no-cache" ], "x-ms-request-id": [ - "9bc2e18c-9384-4298-859e-b56577034065" + "d7ce7e17-9ce3-44ad-b32d-b0e4e65d0ff0" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "254b4c53-ddb2-458c-8d55-3dca38e80704" + "d73b5e09-4adc-4a49-bc0e-15095f271579" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1848,13 +1848,13 @@ "11968" ], "x-ms-routing-request-id": [ - "WESTUS2:20190124T153456Z:254b4c53-ddb2-458c-8d55-3dca38e80704" + "WESTUS2:20190215T070233Z:d73b5e09-4adc-4a49-bc0e-15095f271579" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Jan 2019 15:34:56 GMT" + "Fri, 15 Feb 2019 07:02:33 GMT" ], "Content-Length": [ "23" @@ -1870,7 +1870,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b0271e68-72d6-4403-8256-4f71f080d3bf/resourceGroups/hdicsharprg708/providers/Microsoft.HDInsight/clusters/hdisdk-humboldt7928/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/815f6131-5956-4a4c-a3bb-7150b1825909/resourceGroups/hdicsharprg9992/providers/Microsoft.HDInsight/clusters/hdisdk-configs6451/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1878,7 +1878,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -1889,13 +1889,13 @@ "no-cache" ], "x-ms-request-id": [ - "0b39a9cc-e577-49b6-a623-2d169216d161" + "b2b7b046-7c75-4096-bf49-5466be621e2f" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "050ed8e4-ef66-4063-9747-1647a69c82fd" + "1da4cf57-7e91-4b7a-bea6-c327d838e953" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1904,13 +1904,13 @@ "11967" ], "x-ms-routing-request-id": [ - "WESTUS2:20190124T153527Z:050ed8e4-ef66-4063-9747-1647a69c82fd" + "WESTUS2:20190215T070304Z:1da4cf57-7e91-4b7a-bea6-c327d838e953" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Jan 2019 15:35:26 GMT" + "Fri, 15 Feb 2019 07:03:04 GMT" ], "Content-Length": [ "23" @@ -1926,7 +1926,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b0271e68-72d6-4403-8256-4f71f080d3bf/resourceGroups/hdicsharprg708/providers/Microsoft.HDInsight/clusters/hdisdk-humboldt7928/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/815f6131-5956-4a4c-a3bb-7150b1825909/resourceGroups/hdicsharprg9992/providers/Microsoft.HDInsight/clusters/hdisdk-configs6451/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1934,7 +1934,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -1945,13 +1945,13 @@ "no-cache" ], "x-ms-request-id": [ - "1afc42a9-a87d-4ef8-b21c-c4393dbea16e" + "b317a1a7-c9a6-4ea8-896d-acba1ed34c70" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "f2f1f0ae-e6e4-4ae2-b2eb-f872297872c8" + "fa288941-2a1b-499a-8a9a-509603d09f95" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1960,13 +1960,13 @@ "11966" ], "x-ms-routing-request-id": [ - "WESTUS2:20190124T153558Z:f2f1f0ae-e6e4-4ae2-b2eb-f872297872c8" + "WESTUS2:20190215T070335Z:fa288941-2a1b-499a-8a9a-509603d09f95" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Jan 2019 15:35:57 GMT" + "Fri, 15 Feb 2019 07:03:34 GMT" ], "Content-Length": [ "23" @@ -1982,7 +1982,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b0271e68-72d6-4403-8256-4f71f080d3bf/resourceGroups/hdicsharprg708/providers/Microsoft.HDInsight/clusters/hdisdk-humboldt7928/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/815f6131-5956-4a4c-a3bb-7150b1825909/resourceGroups/hdicsharprg9992/providers/Microsoft.HDInsight/clusters/hdisdk-configs6451/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1990,7 +1990,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -2001,13 +2001,13 @@ "no-cache" ], "x-ms-request-id": [ - "d80f9adc-22eb-465f-9525-baa74a33eaab" + "34449e6c-7f2b-44cb-a5d8-1f7bde1d64cf" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "c6ebf46e-d671-4df9-b8b5-84c241fb7f6c" + "14c60a26-5cdd-4692-946e-6b03fa100f07" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2016,13 +2016,13 @@ "11965" ], "x-ms-routing-request-id": [ - "WESTUS2:20190124T153628Z:c6ebf46e-d671-4df9-b8b5-84c241fb7f6c" + "WESTUS2:20190215T070406Z:14c60a26-5cdd-4692-946e-6b03fa100f07" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Jan 2019 15:36:28 GMT" + "Fri, 15 Feb 2019 07:04:06 GMT" ], "Content-Length": [ "23" @@ -2038,7 +2038,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b0271e68-72d6-4403-8256-4f71f080d3bf/resourceGroups/hdicsharprg708/providers/Microsoft.HDInsight/clusters/hdisdk-humboldt7928/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/815f6131-5956-4a4c-a3bb-7150b1825909/resourceGroups/hdicsharprg9992/providers/Microsoft.HDInsight/clusters/hdisdk-configs6451/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2046,7 +2046,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -2057,13 +2057,13 @@ "no-cache" ], "x-ms-request-id": [ - "641a2996-85d6-4413-be70-672f47330e19" + "72de8738-eb14-472c-bf17-3acb924c87cd" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "8ba15523-6577-4233-8cb3-3eeb1af677aa" + "91ec6534-8e83-4f08-aaa4-92fd03eae8e1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2072,13 +2072,13 @@ "11964" ], "x-ms-routing-request-id": [ - "WESTUS2:20190124T153659Z:8ba15523-6577-4233-8cb3-3eeb1af677aa" + "WESTUS2:20190215T070437Z:91ec6534-8e83-4f08-aaa4-92fd03eae8e1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Jan 2019 15:36:58 GMT" + "Fri, 15 Feb 2019 07:04:37 GMT" ], "Content-Length": [ "23" @@ -2094,7 +2094,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b0271e68-72d6-4403-8256-4f71f080d3bf/resourceGroups/hdicsharprg708/providers/Microsoft.HDInsight/clusters/hdisdk-humboldt7928/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/815f6131-5956-4a4c-a3bb-7150b1825909/resourceGroups/hdicsharprg9992/providers/Microsoft.HDInsight/clusters/hdisdk-configs6451/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2102,7 +2102,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -2113,13 +2113,13 @@ "no-cache" ], "x-ms-request-id": [ - "11769307-b4d3-4cfc-b79a-3db2cfb16827" + "5f83914a-cc6c-4e69-8ba8-16171dbd7762" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "de824d7a-db9b-40c6-a281-acf1d430a55f" + "958a9746-49ec-4317-9f13-c28590c014ae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2128,13 +2128,13 @@ "11963" ], "x-ms-routing-request-id": [ - "WESTUS2:20190124T153729Z:de824d7a-db9b-40c6-a281-acf1d430a55f" + "WESTUS2:20190215T070508Z:958a9746-49ec-4317-9f13-c28590c014ae" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Jan 2019 15:37:29 GMT" + "Fri, 15 Feb 2019 07:05:08 GMT" ], "Content-Length": [ "23" @@ -2150,7 +2150,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b0271e68-72d6-4403-8256-4f71f080d3bf/resourceGroups/hdicsharprg708/providers/Microsoft.HDInsight/clusters/hdisdk-humboldt7928/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/815f6131-5956-4a4c-a3bb-7150b1825909/resourceGroups/hdicsharprg9992/providers/Microsoft.HDInsight/clusters/hdisdk-configs6451/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2158,7 +2158,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -2169,13 +2169,13 @@ "no-cache" ], "x-ms-request-id": [ - "c5dec954-993f-4438-801d-7ee2cbc5fbd5" + "ed9373e8-75b7-4c81-90e1-a0388cdc788a" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "f90f345f-b373-4109-a876-d8f0159f1857" + "c416e34f-4afd-4ae5-9b14-64524959e052" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2184,13 +2184,13 @@ "11962" ], "x-ms-routing-request-id": [ - "WESTUS2:20190124T153800Z:f90f345f-b373-4109-a876-d8f0159f1857" + "WESTUS2:20190215T070539Z:c416e34f-4afd-4ae5-9b14-64524959e052" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Jan 2019 15:37:59 GMT" + "Fri, 15 Feb 2019 07:05:38 GMT" ], "Content-Length": [ "23" @@ -2206,7 +2206,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b0271e68-72d6-4403-8256-4f71f080d3bf/resourceGroups/hdicsharprg708/providers/Microsoft.HDInsight/clusters/hdisdk-humboldt7928/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/815f6131-5956-4a4c-a3bb-7150b1825909/resourceGroups/hdicsharprg9992/providers/Microsoft.HDInsight/clusters/hdisdk-configs6451/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2214,7 +2214,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -2225,13 +2225,13 @@ "no-cache" ], "x-ms-request-id": [ - "24373eec-8bf6-40b4-927c-0d16698ba3f3" + "14ba7bd2-daf8-4a47-afae-e9233dad9f07" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "d6c7a01b-0aa0-49ed-8c0d-83f1f529b698" + "ac18c1f5-1a02-46f9-8f27-9b2f3a734692" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2240,13 +2240,13 @@ "11961" ], "x-ms-routing-request-id": [ - "WESTUS2:20190124T153830Z:d6c7a01b-0aa0-49ed-8c0d-83f1f529b698" + "WESTUS2:20190215T070610Z:ac18c1f5-1a02-46f9-8f27-9b2f3a734692" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Jan 2019 15:38:30 GMT" + "Fri, 15 Feb 2019 07:06:10 GMT" ], "Content-Length": [ "23" @@ -2262,7 +2262,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b0271e68-72d6-4403-8256-4f71f080d3bf/resourceGroups/hdicsharprg708/providers/Microsoft.HDInsight/clusters/hdisdk-humboldt7928/azureasyncoperations/create?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/815f6131-5956-4a4c-a3bb-7150b1825909/resourceGroups/hdicsharprg9992/providers/Microsoft.HDInsight/clusters/hdisdk-configs6451/azureasyncoperations/create?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2270,7 +2270,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -2281,13 +2281,13 @@ "no-cache" ], "x-ms-request-id": [ - "a997fbf0-998a-4dd5-af70-f6e5d4dec15e" + "ba7b3aee-62fa-4ae8-990a-b255f35d9177" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "e62c7b4b-b53b-48bd-b1d9-e7c40fbb5b53" + "b683808a-ed83-40ed-8015-ffec25f7c6f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2296,69 +2296,13 @@ "11960" ], "x-ms-routing-request-id": [ - "WESTUS2:20190124T153901Z:e62c7b4b-b53b-48bd-b1d9-e7c40fbb5b53" + "WESTUS2:20190215T070641Z:b683808a-ed83-40ed-8015-ffec25f7c6f8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Jan 2019 15:39:00 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b0271e68-72d6-4403-8256-4f71f080d3bf/resourceGroups/hdicsharprg708/providers/Microsoft.HDInsight/clusters/hdisdk-humboldt7928/azureasyncoperations/create?api-version=2018-06-01-preview", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26628.05", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "37bbe0c6-29dd-4317-a85b-d54396437d3a" - ], - "x-ms-hdi-served-by": [ - "global" - ], - "x-ms-correlation-request-id": [ - "ee696d1d-d198-4a35-8f45-710004102ed0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190124T153942Z:ee696d1d-d198-4a35-8f45-710004102ed0" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 24 Jan 2019 15:39:42 GMT" + "Fri, 15 Feb 2019 07:06:40 GMT" ], "Content-Length": [ "22" @@ -2374,7 +2318,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b0271e68-72d6-4403-8256-4f71f080d3bf/resourceGroups/hdicsharprg708/providers/Microsoft.HDInsight/clusters/hdisdk-humboldt7928?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/815f6131-5956-4a4c-a3bb-7150b1825909/resourceGroups/hdicsharprg9992/providers/Microsoft.HDInsight/clusters/hdisdk-configs6451?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2382,7 +2326,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -2393,31 +2337,31 @@ "no-cache" ], "x-ms-request-id": [ - "61c69507-648a-4397-a9e4-9ddbd691f131" + "bbc4c49c-620b-4efa-b3fd-574bae71cf57" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "b3c72c4d-ca68-4ca0-8814-cb270dd2532a" + "a212b854-430b-4b40-9f5f-62ab825e4add" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" + "11959" ], "x-ms-routing-request-id": [ - "WESTUS2:20190124T153947Z:b3c72c4d-ca68-4ca0-8814-cb270dd2532a" + "WESTUS2:20190215T070642Z:a212b854-430b-4b40-9f5f-62ab825e4add" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Jan 2019 15:39:46 GMT" + "Fri, 15 Feb 2019 07:06:41 GMT" ], "Content-Length": [ - "1490" + "1487" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2426,16 +2370,16 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b0271e68-72d6-4403-8256-4f71f080d3bf/resourceGroups/hdicsharprg708/providers/Microsoft.HDInsight/clusters/hdisdk-humboldt7928\",\r\n \"name\": \"hdisdk-humboldt7928\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"f2a00ce8-be04-4b7c-9046-5925be9e33c9\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3005-27\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1812120705.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Large\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1051\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Large\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1051\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Medium\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1051\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-01-24T15:18:19.177\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-humboldt7928-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-humboldt7928.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/815f6131-5956-4a4c-a3bb-7150b1825909/resourceGroups/hdicsharprg9992/providers/Microsoft.HDInsight/clusters/hdisdk-configs6451\",\r\n \"name\": \"hdisdk-configs6451\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"b78ed4d8-075f-4c93-b4c0-204cfc2bb5a1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3006-29\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1902132019.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Large\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser8205\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Large\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser8205\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Medium\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser8205\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-02-15T06:46:03.813\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-configs6451-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-configs6451.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b0271e68-72d6-4403-8256-4f71f080d3bf/resourceGroups/hdicsharprg708/providers/Microsoft.HDInsight/clusters/hdisdk-humboldt7928/configurations/hive-site?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/815f6131-5956-4a4c-a3bb-7150b1825909/resourceGroups/hdicsharprg9992/providers/Microsoft.HDInsight/clusters/hdisdk-configs6451/configurations/hive-site?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c6e358dd-2802-4428-bb6f-ee939730071f" + "e9430523-a750-4ee4-8940-5e706d1ad06f" ], "Accept-Language": [ "en-US" @@ -2444,7 +2388,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -2455,28 +2399,28 @@ "no-cache" ], "x-ms-request-id": [ - "9371f6d3-3057-419b-9742-baa7417d2d1d" + "6ff36f32-91b9-49f5-8ffe-82f1df0652fd" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "77f4d0c7-0e84-4066-b72d-6a816c0450fc" + "d74223d5-12b0-40f8-8926-4f6bd60bacdb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" + "11958" ], "x-ms-routing-request-id": [ - "WESTUS2:20190124T153947Z:77f4d0c7-0e84-4066-b72d-6a816c0450fc" + "WESTUS2:20190215T070643Z:d74223d5-12b0-40f8-8926-4f6bd60bacdb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Jan 2019 15:39:47 GMT" + "Fri, 15 Feb 2019 07:06:42 GMT" ], "Content-Length": [ "33" @@ -2492,12 +2436,12 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b0271e68-72d6-4403-8256-4f71f080d3bf/resourceGroups/hdicsharprg708/providers/Microsoft.HDInsight/clusters/hdisdk-humboldt7928/configurations/mapred-site?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/815f6131-5956-4a4c-a3bb-7150b1825909/resourceGroups/hdicsharprg9992/providers/Microsoft.HDInsight/clusters/hdisdk-configs6451/configurations/mapred-site?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "974a2f1b-152c-4fb8-be8e-ff05bb4f0f52" + "500a8a99-211f-4f1f-aa9d-f40878c5bb0b" ], "Accept-Language": [ "en-US" @@ -2506,7 +2450,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -2517,28 +2461,28 @@ "no-cache" ], "x-ms-request-id": [ - "d9aa3209-8cbd-4493-bc36-022bb5f6152b" + "8c3fc6d4-a639-486a-be40-fb3439db40e0" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "f059596b-7061-4d76-a583-5c6feddfb928" + "81cd2c42-eb21-4052-969d-d9eb008035ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" + "11957" ], "x-ms-routing-request-id": [ - "WESTUS2:20190124T153947Z:f059596b-7061-4d76-a583-5c6feddfb928" + "WESTUS2:20190215T070643Z:81cd2c42-eb21-4052-969d-d9eb008035ed" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Jan 2019 15:39:47 GMT" + "Fri, 15 Feb 2019 07:06:42 GMT" ], "Content-Length": [ "33" @@ -2554,12 +2498,12 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b0271e68-72d6-4403-8256-4f71f080d3bf/resourceGroups/hdicsharprg708/providers/Microsoft.HDInsight/clusters/hdisdk-humboldt7928/configurations/yarn-site?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/815f6131-5956-4a4c-a3bb-7150b1825909/resourceGroups/hdicsharprg9992/providers/Microsoft.HDInsight/clusters/hdisdk-configs6451/configurations/yarn-site?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1d6b4446-b57e-47a2-ab6f-6a24d3abfd69" + "d75586ad-4f8e-4e43-a3d3-c6b2c70489cb" ], "Accept-Language": [ "en-US" @@ -2568,7 +2512,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -2579,28 +2523,28 @@ "no-cache" ], "x-ms-request-id": [ - "d84db3c0-9734-4f90-bd03-20de38c10595" + "20818f62-b41c-479e-837e-27a8a0b76a9d" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "5bf06eea-c9c2-466c-96b8-9cb8980400d9" + "83d5fbd7-ae9e-4bca-8c84-ae33351913bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" + "11956" ], "x-ms-routing-request-id": [ - "WESTUS2:20190124T153948Z:5bf06eea-c9c2-466c-96b8-9cb8980400d9" + "WESTUS2:20190215T070644Z:83d5fbd7-ae9e-4bca-8c84-ae33351913bb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Jan 2019 15:39:48 GMT" + "Fri, 15 Feb 2019 07:06:43 GMT" ], "Content-Length": [ "33" @@ -2616,12 +2560,12 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b0271e68-72d6-4403-8256-4f71f080d3bf/resourceGroups/hdicsharprg708/providers/Microsoft.HDInsight/clusters/hdisdk-humboldt7928/configurations/gateway?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/815f6131-5956-4a4c-a3bb-7150b1825909/resourceGroups/hdicsharprg9992/providers/Microsoft.HDInsight/clusters/hdisdk-configs6451/configurations/core-site?api-version=2018-06-01-preview", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c46cce44-99cc-4628-9779-57e2174fcb99" + "9452eaa4-e18f-4da6-98d8-e547f4d9781a" ], "Accept-Language": [ "en-US" @@ -2630,7 +2574,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -2641,31 +2585,31 @@ "no-cache" ], "x-ms-request-id": [ - "53c5847f-1c2c-4f2a-b26e-5f03e8ea5e3b" + "0f53eab7-9397-49ed-bfb3-8578f4246988" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "152cab1e-fa24-4326-9be6-d375037956a5" + "21b179d1-d9d9-466e-bc76-64ff9b84a27b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11954" + "11955" ], "x-ms-routing-request-id": [ - "WESTUS2:20190124T153952Z:152cab1e-fa24-4326-9be6-d375037956a5" + "WESTUS2:20190215T070645Z:21b179d1-d9d9-466e-bc76-64ff9b84a27b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Jan 2019 15:39:52 GMT" + "Fri, 15 Feb 2019 07:06:45 GMT" ], "Content-Length": [ - "125" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2674,16 +2618,16 @@ "-1" ] }, - "ResponseBody": "{\r\n \"restAuthCredential.isEnabled\": \"true\",\r\n \"restAuthCredential.username\": \"admin739\",\r\n \"restAuthCredential.password\": \"Password1595\"\r\n}", + "ResponseBody": "{\r\n \"fs.defaultFS\": \"wasb://default8714@hdicsharpstorage4545.blob.core.windows.net\",\r\n \"fs.azure.account.key.hdicsharpstorage4545.blob.core.windows.net\": \"pRfclMxDj2cGGYACAF5J+H4nkFoYHB3nYGt1YcSLP38oMJwII/oN19x6wigW52id58LSlZb1NhNsExzNaC6hgQ==\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b0271e68-72d6-4403-8256-4f71f080d3bf/resourceGroups/hdicsharprg708/providers/Microsoft.HDInsight/clusters/hdisdk-humboldt7928/configurations/core-site?api-version=2018-06-01-preview", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/815f6131-5956-4a4c-a3bb-7150b1825909/resourceGroups/hdicsharprg9992/providers/Microsoft.HDInsight/clusters/hdisdk-configs6451/configurations?api-version=2018-06-01-preview", + "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "952c951f-1493-4f03-944a-060e53c6f786" + "5dc25b06-d80a-43b2-966b-434080344b11" ], "Accept-Language": [ "en-US" @@ -2692,7 +2636,7 @@ "FxVersion/4.6.26628.05", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.2.0.0" + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/4.4.0.0" ] }, "ResponseHeaders": { @@ -2703,31 +2647,31 @@ "no-cache" ], "x-ms-request-id": [ - "6ae6c461-a101-4d1f-96d1-1a89d698e0f4" + "60302757-712d-4ab1-b37e-5b9dc695fe22" ], "x-ms-hdi-served-by": [ - "global" + "southcentralus" ], "x-ms-correlation-request-id": [ - "061d3d79-635b-44f9-85d3-6576ae2c4baa" + "2c102de5-bc1c-442d-88bc-c97b79f673fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11953" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-routing-request-id": [ - "WESTUS2:20190124T153953Z:061d3d79-635b-44f9-85d3-6576ae2c4baa" + "WESTUS2:20190215T070646Z:2c102de5-bc1c-442d-88bc-c97b79f673fd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Jan 2019 15:39:52 GMT" + "Fri, 15 Feb 2019 07:06:46 GMT" ], "Content-Length": [ - "235" + "548" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2736,31 +2680,33 @@ "-1" ] }, - "ResponseBody": "{\r\n \"fs.defaultFS\": \"wasb://default40@hdicsharpstorage2932.blob.core.windows.net\",\r\n \"fs.azure.account.key.hdicsharpstorage2932.blob.core.windows.net\": \"tDy+pJWMPfOMdA7m7X/xGBjTx0LWRy6WHpeQf4TfXCuHoHmKnPNiM2jtTDblV3dkqjWXqBSd6Hqmgc5yDdXPUA==\"\r\n}", + "ResponseBody": "{\r\n \"configurations\": {\r\n \"hive-site\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"mapred-site\": {\r\n \"key5\": \"value5\",\r\n \"key6\": \"value6\"\r\n },\r\n \"yarn-site\": {\r\n \"key7\": \"value7\",\r\n \"key8\": \"value8\"\r\n },\r\n \"core-site\": {\r\n \"fs.defaultFS\": \"wasb://default8714@hdicsharpstorage4545.blob.core.windows.net\",\r\n \"fs.azure.account.key.hdicsharpstorage4545.blob.core.windows.net\": \"pRfclMxDj2cGGYACAF5J+H4nkFoYHB3nYGt1YcSLP38oMJwII/oN19x6wigW52id58LSlZb1NhNsExzNaC6hgQ==\"\r\n },\r\n \"gateway\": {\r\n \"restAuthCredential.isEnabled\": \"true\",\r\n \"restAuthCredential.username\": \"admin5472\",\r\n \"restAuthCredential.password\": \"Password15288\"\r\n }\r\n }\r\n}", "StatusCode": 200 } ], "Names": { ".ctor": [ - "admin739", - "Password1595", - "sshuser1051", - "Password13962", - "fbea3e1d-0fa7-4cce-b75c-6e0e0b59075f", - "hdicsharprg708", - "hdicsharpstorage2932", - "hdicsharpmsi7392", - "hdicsharpvault9003", - "hdicsharpadls929", - "default40", - "storageaccountkey8640", - "b0271e68-72d6-4403-8256-4f71f080d3bf" + "admin5472", + "Password15288", + "sshuser8205", + "Password17608", + "dfa24781-95c8-4a45-aec7-f06089a2d33e", + "hdicsharprg9992", + "hdicsharpstorage4545", + "hdicsharpmsi4248", + "hdicsharpvault5148", + "hdicsharpadls7327", + "default8714", + "storageaccountkey3866" + ], + "TestInitialize": [ + "815f6131-5956-4a4c-a3bb-7150b1825909" ], "TestGetConfigurations": [ - "hdisdk-humboldt7928" + "hdisdk-configs6451" ] }, "Variables": { - "SubscriptionId": "b0271e68-72d6-4403-8256-4f71f080d3bf" + "SubscriptionId": "815f6131-5956-4a4c-a3bb-7150b1825909" } } diff --git a/src/SDKs/HDInsight/Management/Management.HDInsight.Tests/TestHelpers/CommonTestsFixture.cs b/src/SDKs/HDInsight/Management/Management.HDInsight.Tests/TestHelpers/CommonTestsFixture.cs index 0ec3f51d5b9d..62b956a96e25 100644 --- a/src/SDKs/HDInsight/Management/Management.HDInsight.Tests/TestHelpers/CommonTestsFixture.cs +++ b/src/SDKs/HDInsight/Management/Management.HDInsight.Tests/TestHelpers/CommonTestsFixture.cs @@ -133,9 +133,9 @@ public CommonTestFixture() Location = "East US 2"; AdlsGen2RequiredRoleName = "Storage Blob Data Contributor"; ClusterUserName = TestUtilities.GenerateName("admin"); - ClusterPassword = TestUtilities.GenerateName("Password1"); + ClusterPassword = TestUtilities.GenerateName("Password1!"); SshUsername = TestUtilities.GenerateName("sshuser"); - SshPassword = TestUtilities.GenerateName("Password1"); + SshPassword = TestUtilities.GenerateName("Password1!"); DataLakeStoreMountpoint = "/clusters/hdi"; CertPassword = "123"; CertContent = @"MIIJ8gIBAzCCCa4GCSqGSIb3DQEHAaCCCZ8EggmbMIIJlzCCBgAGCSqGSIb3DQEHAaCCBfEEggXtMIIF6TCCBeUGCyqGSIb3DQEMCgECoIIE9jCCBPIwHAYKKoZIhvcNAQwBAzAOBAiTJstpWcGFZAICB9AEggTQZvg9qVE2ptb3hdH9hnDf5pwIeGghe9assBeEKj/W1JMUjsdEu7qzXH9/3Ro6C1HF6MvSqbav7MD8je9AMb0jl7T3ZmXPgGtrbUsSBTPruVv0hTXPRTxQmcfwae5vEkD03b/4W22sXMMYZB7wOTQMl1d5+0wt267qdF+G1XWtRI2jnxetK8/oyMQxn5Cwuz/VAmn1tXwRAN9gIiZDA8MwvpYha/iFVWKu/vnHg8HT47ry+27/wh8ifM9ea7JWhKh2tZoPIMou9/P/CgkkMv9KVHlmiMldA3Phxsrqjbh/wbd8RWBOtSM7rryMVnc1MYonZraDJMGOLGAhvEcXNBKLwRdmrDDYvpOYlDYKlmNvDXYDm410XCOia2aKP0WoP4qLsExtUwW8Qk2r2QRy5O4B5p2EbPZBlPlMMO4S1NkASjJCghuTCUgvk3uwe2L/mMf0IajAf+R0/VW/fXHbhJkFKobi5JlIqWaHsSC7hMidWj6771Yi8UEXOMshWERs2UHH05aIO3c50lnyypHyhA3BohKUXzNhHA0o7ImQRjmjjTJFBLMNiIZSW0aPtLN1+92pT0a6iS7P1PC0DqEnOjkcs/VOUI3qTt0X78b6wnDO+ATo39B13njGD0mtrVvtTeHclBouoFzpKHkS86GSGmDoHQH6EHhpGF/7wPVfAjAiSrNQb/QLjPHWo+BeiOml4Xrti0K6rWb0AXhY8AmtIlEUC9GscDSdT55v9j9tWONzOXECCgZBYDzNlagMLkCDIFHZwbEGPn3pOc7BTOmQf1GQjfvunLiLWWfe3of9pR+NCDyi1VJUNvjoE+/YnVoBBUMBBO6/4t2SL92iouEF4fyqkQFDb0FOPW4Kfh7H5W+sDZIN9NfqNzniK6HFcpS+jnGm9x9rx81DmMcwtiYZTfYDSivtNxOYrmRFXx574stBzvG0En11uc6E4QhWnkCSsBnnOMjRGDyv95BFVMZC0gIS0rWoKYxjdblpmo9w/yfDtAmQuCs3bdqcJ4mMYt0ueUUZImPRQRJOSrVyoq+brLw657EqM1SahtBmzTG7+HTl1Qi/xZ1xmz6paQDSFVPRcb5QSIp4v08j/Lmj0x4R9jQ4cAmZ3CfPKXBKuIRu2AI2EuqGOoAxvQQEpSjSKUs3fbQxjptUhK7o5FcXAfAxHLzdx2/9L1Iqbo/3HDkbmuix24NRXESG0e/kVr7VAGhoALI7L+eKAdn4AkgmBt55FXZ+uHY9bSKZUoz4Oed2bz2A+9sQBcXG06fLqQEwGVPhATEbYyRduuY6AdTRAmOKmadT5BTTD7+dnFlIt+u7ZpbXm6S6LcSqGqHVacig27SwDt0VznQsjMRDVCiHaWKg4W78xbP7YVvNTB/cBCHmhh5ZXfO/TucizXsQPJlwEMr2CbqByqldXi0i1GUrbg4aLUGZtxgUYex7dHlx6GUejOGRh7fLYCNBo43pjCFvbhFwb0/dWya0crJjpGiY3DNtl1YosJBmvso/Rli4QqVeN7tb45ZsGWTEUg1MDeoGRDqal7GDsvBnH574T5Sz3nSLAoNXR7k0rYaWhezJNobo/SDkuSXskVjNJpv+vjEyW2UGYNhaeK/UHKBP8IrmSAEIZejQj6OEzSPM6TNLW5qJb6LK9agxgdswEwYJKoZIhvcNAQkVMQYEBAEAAAAwXQYJKwYBBAGCNxEBMVAeTgBNAGkAYwByAG8AcwBvAGYAdAAgAFMAdAByAG8AbgBnACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcjBlBgkqhkiG9w0BCRQxWB5WAFAAdgBrAFQAbQBwADoAMAAyAGYAZQA0AGUAOAAzAC0AMgAzADEANgAtADQAMQA3AGMALQA5ADQANQBjAC0AZgA1ADUAMABhADUAZAAwAGIAMAAzAGEwggOPBgkqhkiG9w0BBwagggOAMIIDfAIBADCCA3UGCSqGSIb3DQEHATAcBgoqhkiG9w0BDAEDMA4ECAR1hzovrDkgAgIH0ICCA0gq6boOLRoE5PHFfVIXYtzqg1u2vPMm5mgBUvrh3u+VZ/1FMGTj8od9+Yu91cnumVSgfRiGq7lz+K6by5JsBqP68ksLA2d/PqtTdofCoZ7SgVIo+qqzA64HIQFkElNpo/BJMX/JGpc5OlFq7mdHe6xL2Pfx/3z/pNSV+D+WaAwaDnbLqI7MU6ED3j5l63mExk/8H/VVbiPdqMTzbhIp65oHTGanw86w7RlywqeNb3DkPVMB78Jhcg8vf2AxB8hKf6QiO2uJc/4WKkyLoLmNoD/zhaoUuAbC6hrNVAa9VRWNRfwKZrzwIMSLlKYwWmVcD/QgC8gwxuF+wV3UHwDNAdEe8TEsOhE99/ZiUiogxMdkopZwwtZMszzBB/x5mHCGySauDMVPwoYT6QXewJhGrUap0jwB/Vzy5FaWHi/m8964zWpwC6xfkT2hkDb+rfouWutpiAgMne5tD9YvqxTUmZFIlgwpLrVdPcKQS+b/uIXPTv8uW177XsCOmGGu728ld8H1Ifb2nPveK09Y0AA+ARFpOX0p0ZuxMQqk6NnlA+eESJVm5cLfKszorRcrNPINXaEOGl2okuijm8va30FH9GIYWRt+Be6s8qG672aTO/2eHaTHeR/qQ9aEt0ASDXGcugYS14Jnu2wbauyvotZ6eAvgl5tM2leMpgSLaQqYzPTV2uiD6zDUqxwjm2P8EZQihEQqLUV1jvQuQB4Ui7MryDQ+QiDBD2m5c+9SDPafcR7qgRe/cP4hj5BqzHTcNQAD5BLXze7Yx+TMdf+Qe/R1uBYm8bLjUv9hwUmtMeZP4RU6RPJrN2aRf7BUdgS0j/8YAhxViPucRENuhEfS4sotHf1CJZ7xJz0ZE9cpVY6JLl1tbmuf1Eh50cicZ1SHQhqSP0ggLHV6DNcJz+kyekEe9qggGDi6mreYz/kJnnumsDy5cToIHy9jJhtXzj+/ZNGkdpq9HWMiwAT/VR1WPpzjn06m7Z87PiLaiC3simQtjnl0gVF11Ev4rbIhYjFBL0nKfNpzaWlMaOVF+EumROk3EbZVpx1K6Yh0zWh/NocWSUrtSoHVklzwPCNRvnE1Ehyw5t9YbEBsTIDWRYyqbVYoFVfOUhq5p4TXrqEwOzAfMAcGBSsOAwIaBBSx7sJo66zYk4VOsgD9V/co1SikFAQUUvU/kE4wTRnPRnaWXnno+FCb56kCAgfQ"; diff --git a/src/SDKs/HDInsight/Management/Management.HDInsight.Tests/TestHelpers/HDInsightManagementTestUtilities.cs b/src/SDKs/HDInsight/Management/Management.HDInsight.Tests/TestHelpers/HDInsightManagementTestUtilities.cs index 3fde61f17c75..e08b54ccf9d3 100644 --- a/src/SDKs/HDInsight/Management/Management.HDInsight.Tests/TestHelpers/HDInsightManagementTestUtilities.cs +++ b/src/SDKs/HDInsight/Management/Management.HDInsight.Tests/TestHelpers/HDInsightManagementTestUtilities.cs @@ -48,17 +48,17 @@ public static void ValidateCluster(string expectedClustername, ClusterCreatePara } /// - /// Validate HTTP settings + /// Validate gateway settings /// /// /// - /// - public static void ValidateHttpSettings(string expectedUserName, string expectedUserPassword, IDictionary actualHttpSettings) + /// + public static void ValidateGatewaySettings(string expectedUserName, string expectedUserPassword, GatewaySettings actualGatewaySettings) { - Assert.NotNull(actualHttpSettings); - Assert.Equal("true", actualHttpSettings["restAuthCredential.isEnabled"]); - Assert.Equal(expectedUserName, actualHttpSettings["restAuthCredential.username"]); - Assert.Equal(expectedUserPassword, actualHttpSettings["restAuthCredential.password"]); + Assert.NotNull(actualGatewaySettings); + Assert.Equal("true", actualGatewaySettings.IsCredentialEnabled); + Assert.Equal(expectedUserName, actualGatewaySettings.UserName); + Assert.Equal(expectedUserPassword, actualGatewaySettings.Password); } /// diff --git a/src/SDKs/HDInsight/Management/Management.HDInsight.Tests/UnitTests/CustomizationTests.cs b/src/SDKs/HDInsight/Management/Management.HDInsight.Tests/UnitTests/CustomizationTests.cs index 5a134642cfa0..2bc0abe6cd61 100644 --- a/src/SDKs/HDInsight/Management/Management.HDInsight.Tests/UnitTests/CustomizationTests.cs +++ b/src/SDKs/HDInsight/Management/Management.HDInsight.Tests/UnitTests/CustomizationTests.cs @@ -64,42 +64,6 @@ public void TestResizeCustomization() Assert.Equal(handler.Requests[0], handler.Requests[1]); } - [Fact] - public void TestEnableHttpCustomization() - { - TestDelegatingHandler handler = new TestDelegatingHandler(); - HDInsightManagementClient client = GetHDInsightUnitTestingClient(handler); - - string username = "admin"; - string password = "NewPassword123"; - client.Configurations.BeginEnablingHttp(ResourceGroupName, ClusterName, username, password); - client.Configurations.BeginUpdate(ResourceGroupName, ClusterName, ConfigurationKey.Gateway, - ConfigurationsConverter.Convert(new HttpConnectivitySettings - { - EnabledCredential = "true", - Password = password, - Username = username - })); - - Assert.Equal(handler.Requests[0], handler.Requests[1]); - } - - [Fact] - public void TestDisableHttpCustomization() - { - TestDelegatingHandler handler = new TestDelegatingHandler(); - HDInsightManagementClient client = GetHDInsightUnitTestingClient(handler); - - client.Configurations.BeginDisablingHttp(ResourceGroupName, ClusterName); - client.Configurations.BeginUpdate(ResourceGroupName, ClusterName, ConfigurationKey.Gateway, - ConfigurationsConverter.Convert(new HttpConnectivitySettings - { - EnabledCredential = "False" - })); - - Assert.Equal(handler.Requests[0], handler.Requests[1]); - } - [Fact] public void TestExecuteScriptActionsCustomizations() { diff --git a/src/SDKs/HDInsight/Management/Management.HDInsight/Customizations/ConfigurationsOperations.Customizations.cs b/src/SDKs/HDInsight/Management/Management.HDInsight/Customizations/ConfigurationsOperations.Customizations.cs index 7c99abd573b9..24b8153f2e60 100644 --- a/src/SDKs/HDInsight/Management/Management.HDInsight/Customizations/ConfigurationsOperations.Customizations.cs +++ b/src/SDKs/HDInsight/Management/Management.HDInsight/Customizations/ConfigurationsOperations.Customizations.cs @@ -41,6 +41,7 @@ internal partial class ConfigurationsOperations : IServiceOperations /// The cluster long running operation response. /// + [System.Obsolete("This operation is deprecated. Please do not use it any longer.")] public async Task EnableHttpAsync(string resourceGroupName, string clusterName, string username, string password, CancellationToken cancellationToken) { @@ -76,6 +77,7 @@ public async Task EnableHttpAsync(string resourceGroupNa /// /// The cluster long running operation response. /// + [System.Obsolete("This operation is deprecated. Please do not use it any longer.")] public async Task BeginEnablingHttpAsync(string resourceGroupName, string clusterName, string username, string password, CancellationToken cancellationToken) { @@ -104,7 +106,8 @@ public async Task BeginEnablingHttpAsync(string resource /// /// /// The cluster long running operation response. - /// + /// DisableHttpAsync(string resourceGroupName, string clusterName, CancellationToken cancellationToken) { try @@ -133,6 +136,7 @@ public async Task DisableHttpAsync(string resourceGroupN /// /// The cluster long running operation response. /// + [System.Obsolete("This operation is deprecated. Please do not use it any longer.")] public async Task BeginDisablingHttpAsync(string resourceGroupName, string clusterName, CancellationToken cancellationToken) { try diff --git a/src/SDKs/HDInsight/Management/Management.HDInsight/Customizations/ConfigurationsOperationsExtensions.Customizations.cs b/src/SDKs/HDInsight/Management/Management.HDInsight/Customizations/ConfigurationsOperationsExtensions.Customizations.cs index 9894e4f701a9..cd13a44882be 100644 --- a/src/SDKs/HDInsight/Management/Management.HDInsight/Customizations/ConfigurationsOperationsExtensions.Customizations.cs +++ b/src/SDKs/HDInsight/Management/Management.HDInsight/Customizations/ConfigurationsOperationsExtensions.Customizations.cs @@ -38,6 +38,7 @@ public static partial class ConfigurationsOperationsExtensions /// /// The cluster long running operation response. /// + [System.Obsolete("This operation is deprecated. Please do not use it any longer.")] public static void EnableHttp(this IConfigurationsOperations operations,string resourceGroupName, string clusterName, string username, string password) { operations.EnableHttpAsync(resourceGroupName, clusterName, username, password).GetAwaiter().GetResult(); @@ -65,6 +66,7 @@ public static void EnableHttp(this IConfigurationsOperations operations,string r /// /// The cluster long running operation response. /// + [System.Obsolete("This operation is deprecated. Please do not use it any longer.")] public static async Task EnableHttpAsync(this IConfigurationsOperations operations, string resourceGroupName, string clusterName, string username, string password, CancellationToken cancellationToken = default(CancellationToken)) { @@ -93,6 +95,7 @@ public static async Task EnableHttpAsync(this IConfigurationsOperations operatio /// /// The cluster long running operation response. /// + [System.Obsolete("This operation is deprecated. Please do not use it any longer.")] public static void BeginEnablingHttp(this IConfigurationsOperations operations, string resourceGroupName, string clusterName, string username, string password) { operations.BeginEnablingHttpAsync(resourceGroupName, clusterName, username, password).GetAwaiter().GetResult(); @@ -120,6 +123,7 @@ public static void BeginEnablingHttp(this IConfigurationsOperations operations, /// /// The cluster long running operation response. /// + [System.Obsolete("This operation is deprecated. Please do not use it any longer.")] public static async Task BeginEnablingHttpAsync(this IConfigurationsOperations operations, string resourceGroupName, string clusterName, string username, string password, CancellationToken cancellationToken = default(CancellationToken)) { @@ -142,6 +146,7 @@ public static async Task BeginEnablingHttpAsync(this IConfigurationsOperations o /// /// The cluster long running operation response. /// + [System.Obsolete("This operation is deprecated. Please do not use it any longer.")] public static void DisableHttp(this IConfigurationsOperations operations, string resourceGroupName, string clusterName) { operations.DisableHttpAsync(resourceGroupName, clusterName).GetAwaiter().GetResult(); @@ -163,6 +168,7 @@ public static void DisableHttp(this IConfigurationsOperations operations, string /// /// The cluster long running operation response. /// + [System.Obsolete("This operation is deprecated. Please do not use it any longer.")] public static async Task DisableHttpAsync(this IConfigurationsOperations operations, string resourceGroupName, string clusterName, CancellationToken cancellationToken = default(CancellationToken)) { @@ -185,6 +191,7 @@ public static async Task DisableHttpAsync(this IConfigurationsOperations operati /// /// The cluster long running operation response. /// + [System.Obsolete("This operation is deprecated. Please do not use it any longer.")] public static void BeginDisablingHttp(this IConfigurationsOperations operations, string resourceGroupName, string clusterName) { operations.BeginDisablingHttpAsync(resourceGroupName, clusterName).GetAwaiter().GetResult(); @@ -206,6 +213,7 @@ public static void BeginDisablingHttp(this IConfigurationsOperations operations, /// /// The cluster long running operation response. /// + [System.Obsolete("This operation is deprecated. Please do not use it any longer.")] public static async Task BeginDisablingHttpAsync(this IConfigurationsOperations operations, string resourceGroupName, string clusterName, CancellationToken cancellationToken = default(CancellationToken)) { diff --git a/src/SDKs/HDInsight/Management/Management.HDInsight/Customizations/Converters/ConfigurationsConverter.cs b/src/SDKs/HDInsight/Management/Management.HDInsight/Customizations/Converters/ConfigurationsConverter.cs index df2bb287ec38..1026a1d085c5 100644 --- a/src/SDKs/HDInsight/Management/Management.HDInsight/Customizations/Converters/ConfigurationsConverter.cs +++ b/src/SDKs/HDInsight/Management/Management.HDInsight/Customizations/Converters/ConfigurationsConverter.cs @@ -13,6 +13,7 @@ namespace Microsoft.Azure.Management.HDInsight using System.Collections.Generic; using System.Linq; + [Obsolete("This type is deprecated. Please don't use it anymore.")] public static class ConfigurationsConverter { public static Dictionary Convert(HttpConnectivitySettings configuration) diff --git a/src/SDKs/HDInsight/Management/Management.HDInsight/Customizations/IConfigurationsOperations.Customizations.cs b/src/SDKs/HDInsight/Management/Management.HDInsight/Customizations/IConfigurationsOperations.Customizations.cs index e4aa9291a81d..3e5430df5d23 100644 --- a/src/SDKs/HDInsight/Management/Management.HDInsight/Customizations/IConfigurationsOperations.Customizations.cs +++ b/src/SDKs/HDInsight/Management/Management.HDInsight/Customizations/IConfigurationsOperations.Customizations.cs @@ -38,6 +38,7 @@ public partial interface IConfigurationsOperations /// /// The cluster long running operation response. /// + [System.Obsolete("This operation is deprecated. Please do not use it any longer.")] Task EnableHttpAsync(string resourceGroupName, string clusterName, string username, string password, CancellationToken cancellationToken); /// @@ -61,6 +62,7 @@ public partial interface IConfigurationsOperations /// /// The cluster long running operation response. /// + [System.Obsolete("This operation is deprecated. Please do not use it any longer.")] Task BeginEnablingHttpAsync(string resourceGroupName, string clusterName, string username, string password, CancellationToken cancellationToken); /// @@ -78,6 +80,7 @@ public partial interface IConfigurationsOperations /// /// The cluster long running operation response. /// + [System.Obsolete("This operation is deprecated. Please do not use it any longer.")] Task DisableHttpAsync(string resourceGroupName, string clusterName, CancellationToken cancellationToken); /// @@ -95,6 +98,7 @@ public partial interface IConfigurationsOperations /// /// The cluster long running operation response. /// + [System.Obsolete("This operation is deprecated. Please do not use it any longer.")] Task BeginDisablingHttpAsync(string resourceGroupName, string clusterName, CancellationToken cancellationToken); } } diff --git a/src/SDKs/HDInsight/Management/Management.HDInsight/Customizations/Models/HttpConnectivitySettings.cs b/src/SDKs/HDInsight/Management/Management.HDInsight/Customizations/Models/HttpConnectivitySettings.cs index 5f67716b5abb..452d803c86a8 100644 --- a/src/SDKs/HDInsight/Management/Management.HDInsight/Customizations/Models/HttpConnectivitySettings.cs +++ b/src/SDKs/HDInsight/Management/Management.HDInsight/Customizations/Models/HttpConnectivitySettings.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.Management.HDInsight.Models /// /// The payload for a Configure HTTP settings request. /// + [System.Obsolete("This type is deprecated. Please use GatewaySettings instead.")] public partial class HttpConnectivitySettings { /// diff --git a/src/SDKs/HDInsight/Management/Management.HDInsight/Generated/ClustersOperations.cs b/src/SDKs/HDInsight/Management/Management.HDInsight/Generated/ClustersOperations.cs index d6e048075b5b..90d2da8c0e26 100644 --- a/src/SDKs/HDInsight/Management/Management.HDInsight/Generated/ClustersOperations.cs +++ b/src/SDKs/HDInsight/Management/Management.HDInsight/Generated/ClustersOperations.cs @@ -898,6 +898,222 @@ internal ClustersOperations(HDInsightManagementClient client) return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } + /// + /// Gets the gateway settings for the specified cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetGatewaySettingsWithHttpMessagesAsync(string resourceGroupName, string clusterName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (clusterName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "clusterName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "GetGatewaySettings", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HDInsight/clusters/{clusterName}/getGatewaySettings").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Configures the gateway settings on the specified cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cluster configurations. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task UpdateGatewaySettingsWithHttpMessagesAsync(string resourceGroupName, string clusterName, UpdateGatewaySettingsParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginUpdateGatewaySettingsWithHttpMessagesAsync(resourceGroupName, clusterName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + /// /// Executes script actions on the specified HDInsight cluster. /// @@ -1669,6 +1885,190 @@ internal ClustersOperations(HDInsightManagementClient client) return _result; } + /// + /// Configures the gateway settings on the specified cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cluster configurations. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task BeginUpdateGatewaySettingsWithHttpMessagesAsync(string resourceGroupName, string clusterName, UpdateGatewaySettingsParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (clusterName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "clusterName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginUpdateGatewaySettings", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HDInsight/clusters/{clusterName}/updateGatewaySettings").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 202) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + /// /// Executes script actions on the specified HDInsight cluster. /// diff --git a/src/SDKs/HDInsight/Management/Management.HDInsight/Generated/ClustersOperationsExtensions.cs b/src/SDKs/HDInsight/Management/Management.HDInsight/Generated/ClustersOperationsExtensions.cs index 7513f2fc8148..95423e0da04a 100644 --- a/src/SDKs/HDInsight/Management/Management.HDInsight/Generated/ClustersOperationsExtensions.cs +++ b/src/SDKs/HDInsight/Management/Management.HDInsight/Generated/ClustersOperationsExtensions.cs @@ -338,6 +338,89 @@ public static void RotateDiskEncryptionKey(this IClustersOperations operations, (await operations.RotateDiskEncryptionKeyWithHttpMessagesAsync(resourceGroupName, clusterName, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose(); } + /// + /// Gets the gateway settings for the specified cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + public static GatewaySettings GetGatewaySettings(this IClustersOperations operations, string resourceGroupName, string clusterName) + { + return operations.GetGatewaySettingsAsync(resourceGroupName, clusterName).GetAwaiter().GetResult(); + } + + /// + /// Gets the gateway settings for the specified cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cancellation token. + /// + public static async Task GetGatewaySettingsAsync(this IClustersOperations operations, string resourceGroupName, string clusterName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetGatewaySettingsWithHttpMessagesAsync(resourceGroupName, clusterName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Configures the gateway settings on the specified cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cluster configurations. + /// + public static void UpdateGatewaySettings(this IClustersOperations operations, string resourceGroupName, string clusterName, UpdateGatewaySettingsParameters parameters) + { + operations.UpdateGatewaySettingsAsync(resourceGroupName, clusterName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Configures the gateway settings on the specified cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cluster configurations. + /// + /// + /// The cancellation token. + /// + public static async Task UpdateGatewaySettingsAsync(this IClustersOperations operations, string resourceGroupName, string clusterName, UpdateGatewaySettingsParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.UpdateGatewaySettingsWithHttpMessagesAsync(resourceGroupName, clusterName, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + /// /// Executes script actions on the specified HDInsight cluster. /// @@ -550,6 +633,49 @@ public static void BeginRotateDiskEncryptionKey(this IClustersOperations operati (await operations.BeginRotateDiskEncryptionKeyWithHttpMessagesAsync(resourceGroupName, clusterName, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose(); } + /// + /// Configures the gateway settings on the specified cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cluster configurations. + /// + public static void BeginUpdateGatewaySettings(this IClustersOperations operations, string resourceGroupName, string clusterName, UpdateGatewaySettingsParameters parameters) + { + operations.BeginUpdateGatewaySettingsAsync(resourceGroupName, clusterName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Configures the gateway settings on the specified cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cluster configurations. + /// + /// + /// The cancellation token. + /// + public static async Task BeginUpdateGatewaySettingsAsync(this IClustersOperations operations, string resourceGroupName, string clusterName, UpdateGatewaySettingsParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.BeginUpdateGatewaySettingsWithHttpMessagesAsync(resourceGroupName, clusterName, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + /// /// Executes script actions on the specified HDInsight cluster. /// diff --git a/src/SDKs/HDInsight/Management/Management.HDInsight/Generated/ConfigurationsOperations.cs b/src/SDKs/HDInsight/Management/Management.HDInsight/Generated/ConfigurationsOperations.cs index 3b13e456b3c8..439dfe2052e9 100644 --- a/src/SDKs/HDInsight/Management/Management.HDInsight/Generated/ConfigurationsOperations.cs +++ b/src/SDKs/HDInsight/Management/Management.HDInsight/Generated/ConfigurationsOperations.cs @@ -51,7 +51,199 @@ internal ConfigurationsOperations(HDInsightManagementClient client) public HDInsightManagementClient Client { get; private set; } /// - /// Configures the configuration on the specified cluster. + /// Gets all configuration information for an HDI cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> ListWithHttpMessagesAsync(string resourceGroupName, string clusterName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (clusterName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "clusterName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HDInsight/clusters/{clusterName}/configurations").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Configures the HTTP settings on the specified cluster. This API is + /// deprecated, please use UpdateGatewaySettings in cluster endpoint instead. /// /// /// The name of the resource group. @@ -71,6 +263,7 @@ internal ConfigurationsOperations(HDInsightManagementClient client) /// /// The cancellation token. /// + [System.Obsolete("This operation is deprecated. Please do not use it any longer.")] public async Task UpdateWithHttpMessagesAsync(string resourceGroupName, string clusterName, string configurationName, IDictionary parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Send request @@ -79,7 +272,9 @@ internal ConfigurationsOperations(HDInsightManagementClient client) } /// - /// The configuration object for the specified cluster. + /// The configuration object for the specified cluster. This API is not + /// recommended and might be removed in the future. Please consider using List + /// configurations API instead. /// /// /// The name of the resource group. @@ -279,7 +474,8 @@ internal ConfigurationsOperations(HDInsightManagementClient client) } /// - /// Configures the configuration on the specified cluster. + /// Configures the HTTP settings on the specified cluster. This API is + /// deprecated, please use UpdateGatewaySettings in cluster endpoint instead. /// /// /// The name of the resource group. @@ -311,6 +507,7 @@ internal ConfigurationsOperations(HDInsightManagementClient client) /// /// A response object containing the response body and response headers. /// + [System.Obsolete("This operation is deprecated. Please do not use it any longer.")] public async Task BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string clusterName, string configurationName, IDictionary parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) diff --git a/src/SDKs/HDInsight/Management/Management.HDInsight/Generated/ConfigurationsOperationsExtensions.cs b/src/SDKs/HDInsight/Management/Management.HDInsight/Generated/ConfigurationsOperationsExtensions.cs index 2e84c52b4dbf..1519ab414778 100644 --- a/src/SDKs/HDInsight/Management/Management.HDInsight/Generated/ConfigurationsOperationsExtensions.cs +++ b/src/SDKs/HDInsight/Management/Management.HDInsight/Generated/ConfigurationsOperationsExtensions.cs @@ -24,7 +24,48 @@ namespace Microsoft.Azure.Management.HDInsight public static partial class ConfigurationsOperationsExtensions { /// - /// Configures the configuration on the specified cluster. + /// Gets all configuration information for an HDI cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + public static ClusterConfigurations List(this IConfigurationsOperations operations, string resourceGroupName, string clusterName) + { + return operations.ListAsync(resourceGroupName, clusterName).GetAwaiter().GetResult(); + } + + /// + /// Gets all configuration information for an HDI cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cancellation token. + /// + public static async Task ListAsync(this IConfigurationsOperations operations, string resourceGroupName, string clusterName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, clusterName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Configures the HTTP settings on the specified cluster. This API is + /// deprecated, please use UpdateGatewaySettings in cluster endpoint instead. /// /// /// The operations group for this extension method. @@ -41,13 +82,15 @@ public static partial class ConfigurationsOperationsExtensions /// /// The cluster configurations. /// + [System.Obsolete("This operation is deprecated. Please do not use it any longer.")] public static void Update(this IConfigurationsOperations operations, string resourceGroupName, string clusterName, string configurationName, IDictionary parameters) { operations.UpdateAsync(resourceGroupName, clusterName, configurationName, parameters).GetAwaiter().GetResult(); } /// - /// Configures the configuration on the specified cluster. + /// Configures the HTTP settings on the specified cluster. This API is + /// deprecated, please use UpdateGatewaySettings in cluster endpoint instead. /// /// /// The operations group for this extension method. @@ -67,13 +110,16 @@ public static void Update(this IConfigurationsOperations operations, string reso /// /// The cancellation token. /// + [System.Obsolete("This operation is deprecated. Please do not use it any longer.")] public static async Task UpdateAsync(this IConfigurationsOperations operations, string resourceGroupName, string clusterName, string configurationName, IDictionary parameters, CancellationToken cancellationToken = default(CancellationToken)) { (await operations.UpdateWithHttpMessagesAsync(resourceGroupName, clusterName, configurationName, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// The configuration object for the specified cluster. + /// The configuration object for the specified cluster. This API is not + /// recommended and might be removed in the future. Please consider using List + /// configurations API instead. /// /// /// The operations group for this extension method. @@ -93,7 +139,9 @@ public static IDictionary Get(this IConfigurationsOperations ope } /// - /// The configuration object for the specified cluster. + /// The configuration object for the specified cluster. This API is not + /// recommended and might be removed in the future. Please consider using List + /// configurations API instead. /// /// /// The operations group for this extension method. @@ -119,7 +167,8 @@ public static IDictionary Get(this IConfigurationsOperations ope } /// - /// Configures the configuration on the specified cluster. + /// Configures the HTTP settings on the specified cluster. This API is + /// deprecated, please use UpdateGatewaySettings in cluster endpoint instead. /// /// /// The operations group for this extension method. @@ -136,13 +185,15 @@ public static IDictionary Get(this IConfigurationsOperations ope /// /// The cluster configurations. /// + [System.Obsolete("This operation is deprecated. Please do not use it any longer.")] public static void BeginUpdate(this IConfigurationsOperations operations, string resourceGroupName, string clusterName, string configurationName, IDictionary parameters) { operations.BeginUpdateAsync(resourceGroupName, clusterName, configurationName, parameters).GetAwaiter().GetResult(); } /// - /// Configures the configuration on the specified cluster. + /// Configures the HTTP settings on the specified cluster. This API is + /// deprecated, please use UpdateGatewaySettings in cluster endpoint instead. /// /// /// The operations group for this extension method. @@ -162,6 +213,7 @@ public static void BeginUpdate(this IConfigurationsOperations operations, string /// /// The cancellation token. /// + [System.Obsolete("This operation is deprecated. Please do not use it any longer.")] public static async Task BeginUpdateAsync(this IConfigurationsOperations operations, string resourceGroupName, string clusterName, string configurationName, IDictionary parameters, CancellationToken cancellationToken = default(CancellationToken)) { (await operations.BeginUpdateWithHttpMessagesAsync(resourceGroupName, clusterName, configurationName, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose(); diff --git a/src/SDKs/HDInsight/Management/Management.HDInsight/Generated/IClustersOperations.cs b/src/SDKs/HDInsight/Management/Management.HDInsight/Generated/IClustersOperations.cs index 2c752772de81..5807eec7055f 100644 --- a/src/SDKs/HDInsight/Management/Management.HDInsight/Generated/IClustersOperations.cs +++ b/src/SDKs/HDInsight/Management/Management.HDInsight/Generated/IClustersOperations.cs @@ -218,6 +218,56 @@ public partial interface IClustersOperations /// Task RotateDiskEncryptionKeyWithHttpMessagesAsync(string resourceGroupName, string clusterName, ClusterDiskEncryptionParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// + /// Gets the gateway settings for the specified cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// 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> GetGatewaySettingsWithHttpMessagesAsync(string resourceGroupName, string clusterName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Configures the gateway settings on the specified cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cluster configurations. + /// + /// + /// 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 UpdateGatewaySettingsWithHttpMessagesAsync(string resourceGroupName, string clusterName, UpdateGatewaySettingsParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Executes script actions on the specified HDInsight cluster. /// /// @@ -343,6 +393,31 @@ public partial interface IClustersOperations /// Task BeginRotateDiskEncryptionKeyWithHttpMessagesAsync(string resourceGroupName, string clusterName, ClusterDiskEncryptionParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// + /// Configures the gateway settings on the specified cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cluster configurations. + /// + /// + /// 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 BeginUpdateGatewaySettingsWithHttpMessagesAsync(string resourceGroupName, string clusterName, UpdateGatewaySettingsParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Executes script actions on the specified HDInsight cluster. /// /// diff --git a/src/SDKs/HDInsight/Management/Management.HDInsight/Generated/IConfigurationsOperations.cs b/src/SDKs/HDInsight/Management/Management.HDInsight/Generated/IConfigurationsOperations.cs index 02010191037c..dce214fb7f09 100644 --- a/src/SDKs/HDInsight/Management/Management.HDInsight/Generated/IConfigurationsOperations.cs +++ b/src/SDKs/HDInsight/Management/Management.HDInsight/Generated/IConfigurationsOperations.cs @@ -24,7 +24,34 @@ namespace Microsoft.Azure.Management.HDInsight public partial interface IConfigurationsOperations { /// - /// Configures the configuration on the specified cluster. + /// Gets all configuration information for an HDI cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> ListWithHttpMessagesAsync(string resourceGroupName, string clusterName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Configures the HTTP settings on the specified cluster. This API is + /// deprecated, please use UpdateGatewaySettings in cluster endpoint + /// instead. /// /// /// The name of the resource group. @@ -47,12 +74,15 @@ public partial interface IConfigurationsOperations /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when a required parameter is null /// + [System.Obsolete("This operation is deprecated. Please do not use it any longer.")] Task UpdateWithHttpMessagesAsync(string resourceGroupName, string clusterName, string configurationName, IDictionary parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// The configuration object for the specified cluster. + /// The configuration object for the specified cluster. This API is not + /// recommended and might be removed in the future. Please consider + /// using List configurations API instead. /// /// /// The name of the resource group. @@ -80,7 +110,9 @@ public partial interface IConfigurationsOperations /// Task>> GetWithHttpMessagesAsync(string resourceGroupName, string clusterName, string configurationName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Configures the configuration on the specified cluster. + /// Configures the HTTP settings on the specified cluster. This API is + /// deprecated, please use UpdateGatewaySettings in cluster endpoint + /// instead. /// /// /// The name of the resource group. @@ -103,9 +135,10 @@ public partial interface IConfigurationsOperations /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when a required parameter is null /// + [System.Obsolete("This operation is deprecated. Please do not use it any longer.")] Task BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string clusterName, string configurationName, IDictionary parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/SDKs/HDInsight/Management/Management.HDInsight/Generated/Models/ClusterConfigurations.cs b/src/SDKs/HDInsight/Management/Management.HDInsight/Generated/Models/ClusterConfigurations.cs new file mode 100644 index 000000000000..8affd1ef1a5c --- /dev/null +++ b/src/SDKs/HDInsight/Management/Management.HDInsight/Generated/Models/ClusterConfigurations.cs @@ -0,0 +1,55 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// The configuration object for the specified cluster. + /// + public partial class ClusterConfigurations + { + /// + /// Initializes a new instance of the ClusterConfigurations class. + /// + public ClusterConfigurations() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ClusterConfigurations class. + /// + /// The configuration object for the + /// specified configuration for the specified cluster. + public ClusterConfigurations(IDictionary> configurations = default(IDictionary>)) + { + Configurations = configurations; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the configuration object for the specified + /// configuration for the specified cluster. + /// + [JsonProperty(PropertyName = "configurations")] + public IDictionary> Configurations { get; set; } + + } +} diff --git a/src/SDKs/HDInsight/Management/Management.HDInsight/Generated/Models/GatewaySettings.cs b/src/SDKs/HDInsight/Management/Management.HDInsight/Generated/Models/GatewaySettings.cs new file mode 100644 index 000000000000..da8ca45ab712 --- /dev/null +++ b/src/SDKs/HDInsight/Management/Management.HDInsight/Generated/Models/GatewaySettings.cs @@ -0,0 +1,69 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Gateway settings. + /// + public partial class GatewaySettings + { + /// + /// Initializes a new instance of the GatewaySettings class. + /// + public GatewaySettings() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the GatewaySettings class. + /// + /// Indicates whether or not the + /// gateway settings based authorization is enabled. + /// The gateway settings user name. + /// The gateway settings user password. + public GatewaySettings(string isCredentialEnabled = default(string), string userName = default(string), string password = default(string)) + { + IsCredentialEnabled = isCredentialEnabled; + UserName = userName; + Password = password; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets indicates whether or not the gateway settings based + /// authorization is enabled. + /// + [JsonProperty(PropertyName = "restAuthCredential.isEnabled")] + public string IsCredentialEnabled { get; private set; } + + /// + /// Gets the gateway settings user name. + /// + [JsonProperty(PropertyName = "restAuthCredential.username")] + public string UserName { get; private set; } + + /// + /// Gets the gateway settings user password. + /// + [JsonProperty(PropertyName = "restAuthCredential.password")] + public string Password { get; private set; } + + } +} diff --git a/src/SDKs/HDInsight/Management/Management.HDInsight/Generated/Models/UpdateGatewaySettingsParameters.cs b/src/SDKs/HDInsight/Management/Management.HDInsight/Generated/Models/UpdateGatewaySettingsParameters.cs new file mode 100644 index 000000000000..917c5a640c7f --- /dev/null +++ b/src/SDKs/HDInsight/Management/Management.HDInsight/Generated/Models/UpdateGatewaySettingsParameters.cs @@ -0,0 +1,71 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// The update gateway settings request parameters. + /// + public partial class UpdateGatewaySettingsParameters + { + /// + /// Initializes a new instance of the UpdateGatewaySettingsParameters + /// class. + /// + public UpdateGatewaySettingsParameters() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the UpdateGatewaySettingsParameters + /// class. + /// + /// Indicates whether or not the + /// gateway settings based authorization is enabled. + /// The gateway settings user name. + /// The gateway settings user password. + public UpdateGatewaySettingsParameters(bool? isCredentialEnabled = default(bool?), string userName = default(string), string password = default(string)) + { + IsCredentialEnabled = isCredentialEnabled; + UserName = userName; + Password = password; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets indicates whether or not the gateway settings based + /// authorization is enabled. + /// + [JsonProperty(PropertyName = "restAuthCredential.isEnabled")] + public bool? IsCredentialEnabled { get; set; } + + /// + /// Gets or sets the gateway settings user name. + /// + [JsonProperty(PropertyName = "restAuthCredential.username")] + public string UserName { get; set; } + + /// + /// Gets or sets the gateway settings user password. + /// + [JsonProperty(PropertyName = "restAuthCredential.password")] + public string Password { get; set; } + + } +} diff --git a/src/SDKs/HDInsight/Management/Management.HDInsight/Generated/SdkInfo_HDInsightManagementClient.cs b/src/SDKs/HDInsight/Management/Management.HDInsight/Generated/SdkInfo_HDInsightManagementClient.cs index dded9cc9af05..07a234bd641c 100644 --- a/src/SDKs/HDInsight/Management/Management.HDInsight/Generated/SdkInfo_HDInsightManagementClient.cs +++ b/src/SDKs/HDInsight/Management/Management.HDInsight/Generated/SdkInfo_HDInsightManagementClient.cs @@ -36,7 +36,7 @@ public static IEnumerable> ApiInfo_HDInsightManage public static readonly String AutoRestCmdExecuted = "cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/hdinsight/resource-manager/readme.md --csharp --version=latest --reflect-api-versions --csharp-sdks-folder=D:\\code\\AzureSDK\\azure-sdk-for-net\\src\\SDKs"; public static readonly String GithubForkName = "Azure"; public static readonly String GithubBranchName = "master"; - public static readonly String GithubCommidId = "14f4c33c0a6cc17d0b3577fbddfaacd38a235b57"; + public static readonly String GithubCommidId = "dbc082d4c38348716678f7b66c02b28beea47e4e"; public static readonly String CodeGenerationErrors = ""; public static readonly String GithubRepoName = "azure-rest-api-specs"; // END: Code Generation Metadata Section diff --git a/src/SDKs/HDInsight/Management/Management.HDInsight/Management.HDInsight.csproj b/src/SDKs/HDInsight/Management/Management.HDInsight/Management.HDInsight.csproj index f7ddcc819f0c..0abed9d4fa04 100644 --- a/src/SDKs/HDInsight/Management/Management.HDInsight/Management.HDInsight.csproj +++ b/src/SDKs/HDInsight/Management/Management.HDInsight/Management.HDInsight.csproj @@ -7,11 +7,11 @@ Microsoft.Azure.Management.HDInsight Azure HDInsight Management SDK Library Microsoft.Azure.Management.HDInsight - 4.3.0-preview + 4.4.0-preview Microsoft Azure HDInsight Management;HDInsight;HDInsight Management diff --git a/src/SDKs/HDInsight/Management/Management.HDInsight/Properties/AssemblyInfo.cs b/src/SDKs/HDInsight/Management/Management.HDInsight/Properties/AssemblyInfo.cs index 784dd81e75d7..3e229a5e2d3d 100644 --- a/src/SDKs/HDInsight/Management/Management.HDInsight/Properties/AssemblyInfo.cs +++ b/src/SDKs/HDInsight/Management/Management.HDInsight/Properties/AssemblyInfo.cs @@ -22,7 +22,7 @@ [assembly: AssemblyTitle("Microsoft Azure HDInsight Management Library")] [assembly: AssemblyDescription("Provides management functionality for Microsoft Azure HDInsight.")] [assembly: AssemblyVersion("4.0.0.0")] -[assembly: AssemblyFileVersion("4.3.0.0")] +[assembly: AssemblyFileVersion("4.4.0.0")] [assembly: InternalsVisibleTo("Microsoft.Azure.Management.HDInsight.Tests, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9")] diff --git a/src/SDKs/_metadata/hdinsight_resource-manager.txt b/src/SDKs/_metadata/hdinsight_resource-manager.txt index 4ccc0b5a9e56..1a40cc9fe6b0 100644 --- a/src/SDKs/_metadata/hdinsight_resource-manager.txt +++ b/src/SDKs/_metadata/hdinsight_resource-manager.txt @@ -4,11 +4,11 @@ Commencing code generation Generating CSharp code Executing AutoRest command cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/hdinsight/resource-manager/readme.md --csharp --version=latest --reflect-api-versions --csharp-sdks-folder=D:\code\AzureSDK\azure-sdk-for-net\src\SDKs -2019-01-24 04:58:47 UTC +2019-04-04 02:04:34 UTC Azure-rest-api-specs repository information GitHub fork: Azure Branch: master -Commit: 14f4c33c0a6cc17d0b3577fbddfaacd38a235b57 +Commit: dbc082d4c38348716678f7b66c02b28beea47e4e AutoRest information Requested version: latest Bootstrapper version: autorest@2.0.4283