diff --git a/src/ResourceManagement/AzureStackAdmin/AzureStackManagement/Microsoft.AzureStack.Management.nuget.proj b/src/ResourceManagement/AzureStackAdmin/AzureStackManagement/Microsoft.AzureStack.Management.nuget.proj
index 9da19ab973c46..720eac0cfcd9a 100644
--- a/src/ResourceManagement/AzureStackAdmin/AzureStackManagement/Microsoft.AzureStack.Management.nuget.proj
+++ b/src/ResourceManagement/AzureStackAdmin/AzureStackManagement/Microsoft.AzureStack.Management.nuget.proj
@@ -1,12 +1,12 @@
-
-
-
-
-
- 0.10.1-preview
- $(MSBuildThisFileDirectory)
-
-
-
+
+
+
+
+
+ 0.10.1-preview
+ $(MSBuildThisFileDirectory)
+
+
+
diff --git a/src/ResourceManagement/HDInsight/HDInsight.Tests/HDInsight.Tests.csproj b/src/ResourceManagement/HDInsight/HDInsight.Tests/HDInsight.Tests.csproj
index 2813797d3193e..5a182d37bcc07 100644
--- a/src/ResourceManagement/HDInsight/HDInsight.Tests/HDInsight.Tests.csproj
+++ b/src/ResourceManagement/HDInsight/HDInsight.Tests/HDInsight.Tests.csproj
@@ -22,6 +22,8 @@
+
+
@@ -69,6 +71,9 @@
PreserveNewest
+
+ PreserveNewest
+
PreserveNewest
@@ -144,4 +149,4 @@
HDInsightManagement
-
+
\ No newline at end of file
diff --git a/src/ResourceManagement/HDInsight/HDInsight.Tests/Helpers/GetClusterSpecHelpers.cs b/src/ResourceManagement/HDInsight/HDInsight.Tests/Helpers/GetClusterSpecHelpers.cs
index ff47e235f730f..592fcffcd369e 100644
--- a/src/ResourceManagement/HDInsight/HDInsight.Tests/Helpers/GetClusterSpecHelpers.cs
+++ b/src/ResourceManagement/HDInsight/HDInsight.Tests/Helpers/GetClusterSpecHelpers.cs
@@ -22,6 +22,7 @@ namespace HDInsight.Tests.Helpers
{
public static class GetClusterSpecHelpers
{
+ private const string ADLDefaultStorageAccountName = "";
private const string DefaultContainer = "";
private const string StorageAccountName = "";
private const string StorageAccountKey = "";
@@ -227,13 +228,12 @@ public static ClusterCreateParameters GetCustomCreateParametersPaas()
ClusterSizeInNodes = 3,
ClusterType = "Hadoop",
WorkerNodeSize = "Large",
- DefaultStorageAccountName = StorageAccountName,
- DefaultStorageAccountKey = StorageAccountKey,
+ DefaultStorageInfo = GetDefaultAzureStorageInfo(),
OSType = OSType.Windows,
UserName = HttpUser,
Password = HttpPassword,
- DefaultStorageContainer = DefaultContainer,
- Location = "West US"
+ Location = "East US",
+ Version = "3.2"
};
var actions = new List();
var action = new ScriptAction("action", new Uri("https://uri.com"), "params");
@@ -251,17 +251,47 @@ public static ClusterCreateParameters GetCustomCreateParametersIaas()
ClusterSizeInNodes = 3,
ClusterType = "Hadoop",
WorkerNodeSize = "Large",
- DefaultStorageAccountName = StorageAccountName,
- DefaultStorageAccountKey = StorageAccountKey,
+ DefaultStorageInfo = GetDefaultAzureStorageInfo(),
OSType = OSType.Linux,
UserName = HttpUser,
Password = HttpPassword,
- DefaultStorageContainer = DefaultContainer,
- Location = "West US",
+ Location = "East US",
+ SshUserName = SshUser,
+ SshPassword = SshPassword,
+ Version = "3.2"
+ };
+ return clusterparams;
+ }
+
+ public static ClusterCreateParameters GetDataLakeDefaultFsCreateParametersIaas()
+ {
+ var storageInfo = GetDefaultAzureDataLakeStoreInfo();
+ return GetDefaultFsCreateParametersIaas(storageInfo);
+ }
+
+ public static ClusterCreateParameters GetAzureBlobDefaultFsCreateParametersIaas(bool specifyDefaultContainer = true)
+ {
+ var storageInfo = GetDefaultAzureStorageInfo(specifyDefaultContainer);
+ return GetDefaultFsCreateParametersIaas(storageInfo);
+ }
+
+ private static ClusterCreateParameters GetDefaultFsCreateParametersIaas(StorageInfo defaultStorageInfo)
+ {
+ var clusterparams = new ClusterCreateParameters
+ {
+ ClusterSizeInNodes = 3,
+ ClusterType = "Hadoop",
+ WorkerNodeSize = "Large",
+ DefaultStorageInfo = defaultStorageInfo,
+ OSType = OSType.Linux,
+ UserName = HttpUser,
+ Password = HttpPassword,
+ Location = "East US",
SshUserName = SshUser,
SshPassword = SshPassword,
Version = "3.2"
};
+
return clusterparams;
}
@@ -272,13 +302,11 @@ public static ClusterCreateParameters GetCustomVmSizesCreateParametersIaas()
ClusterSizeInNodes = 1,
ClusterType = "HBase",
WorkerNodeSize = "Large",
- DefaultStorageAccountName = StorageAccountName,
- DefaultStorageAccountKey = StorageAccountKey,
+ DefaultStorageInfo = GetDefaultAzureStorageInfo(),
OSType = OSType.Linux,
UserName = HttpUser,
Password = HttpPassword,
- DefaultStorageContainer = DefaultContainer,
- Location = "West US",
+ Location = "East US",
SshUserName = SshUser,
SshPassword = SshPassword,
Version = "3.2",
@@ -329,5 +357,47 @@ public static ClusterCreateParametersExtended AddConfigurations(ClusterCreatePar
return cluster;
}
+
+ ///
+ /// Returns appropriate AzureStorageInfo based on test-mode.
+ ///
+ ///
+ private static StorageInfo GetDefaultAzureStorageInfo(bool specifyDefaultContainer=true)
+ {
+ bool recordMode = HDInsightManagementTestUtilities.IsRecordMode();
+
+ if(recordMode)
+ {
+ return (specifyDefaultContainer)
+ ? new AzureStorageInfo(StorageAccountName, StorageAccountKey, DefaultContainer)
+ : new AzureStorageInfo(StorageAccountName, StorageAccountKey);
+ }
+ else
+ {
+ string testStorageAccountName = "tmp.blob.core.windows.net";
+ string testStorageAccountKey = "teststorageaccountkey";
+ string testContainer = "testdefaultcontainer";
+
+ return (specifyDefaultContainer)
+ ? new AzureStorageInfo(testStorageAccountName, testStorageAccountKey, testContainer)
+ : new AzureStorageInfo(testStorageAccountName, testStorageAccountKey);
+ }
+ }
+
+ ///
+ /// Returns appropriate AzureDataLakeStoreInfo based on test-mode.
+ ///
+ ///
+ private static StorageInfo GetDefaultAzureDataLakeStoreInfo()
+ {
+ bool recordMode = HDInsightManagementTestUtilities.IsRecordMode();
+ string ADLClusterRootPath = "/Clusters/SDK";
+
+ return recordMode
+ ? new AzureDataLakeStoreInfo(ADLDefaultStorageAccountName, ADLClusterRootPath)
+ : new AzureDataLakeStoreInfo("tmp.azuredatalakestore.net", ADLClusterRootPath);
+ }
+
+
}
}
diff --git a/src/ResourceManagement/HDInsight/HDInsight.Tests/Helpers/HDInsightManagementTestUtilities.cs b/src/ResourceManagement/HDInsight/HDInsight.Tests/Helpers/HDInsightManagementTestUtilities.cs
index 35f300dd2e2fc..68ba71cabf37d 100644
--- a/src/ResourceManagement/HDInsight/HDInsight.Tests/Helpers/HDInsightManagementTestUtilities.cs
+++ b/src/ResourceManagement/HDInsight/HDInsight.Tests/Helpers/HDInsightManagementTestUtilities.cs
@@ -17,6 +17,7 @@
using Microsoft.Azure.Management.Resources;
using Microsoft.Azure.Management.Resources.Models;
using Microsoft.Azure.Test;
+using System;
namespace HDInsight.Tests.Helpers
{
@@ -85,5 +86,12 @@ public static void WaitForClusterToMoveToRunning(string resourceGroup, string dn
Xunit.Assert.True(!createError);
}
+
+ public static bool IsRecordMode()
+ {
+ string testMode = System.Environment.GetEnvironmentVariable("AZURE_TEST_MODE");
+ bool recordMode = !string.IsNullOrEmpty(testMode) && testMode.Equals("Record", StringComparison.OrdinalIgnoreCase);
+ return recordMode;
+ }
}
}
diff --git a/src/ResourceManagement/HDInsight/HDInsight.Tests/ScenarioTests/DataLakeTests.cs b/src/ResourceManagement/HDInsight/HDInsight.Tests/ScenarioTests/DataLakeTests.cs
index 4c00086e66f12..e57ce616bd1f4 100644
--- a/src/ResourceManagement/HDInsight/HDInsight.Tests/ScenarioTests/DataLakeTests.cs
+++ b/src/ResourceManagement/HDInsight/HDInsight.Tests/ScenarioTests/DataLakeTests.cs
@@ -103,28 +103,85 @@ public void TestCreateDataLakeClusterUsingClusterParameters()
//set variables
const string dnsname = "hdisdk-datalake5";
- var spec = GetDataLakeClusterParameters();
- spec.Version = "3.2";
+ var clusterCreateParams = GetDataLakeClusterParameters();
- var createresponse = client.Clusters.Create(resourceGroup, dnsname, spec);
+ var createresponse = client.Clusters.Create(resourceGroup, dnsname, clusterCreateParams);
+ Assert.Equal(dnsname, createresponse.Cluster.Name);
//TODO: Assert if data lake configurations are set once shefali adds GetConfigurations support
var getresponse = client.Clusters.Get(resourceGroup, dnsname);
Assert.Equal(createresponse.Cluster.Properties.CreatedDate, getresponse.Cluster.Properties.CreatedDate);
Assert.Equal(createresponse.Cluster.Name, getresponse.Cluster.Name);
- OperationResource result = client.Clusters.Delete(resourceGroup, dnsname);
+ // Assert cluster state
+ Assert.Equal(createresponse.Cluster.Properties.ClusterState, "Error"); // due to invalid script action
+ Assert.Equal(createresponse.Cluster.Properties.ErrorInfos.Count, 1);
+
+ // delete the cluster
+ var result = client.Clusters.Delete(resourceGroup, dnsname);
+ Assert.Equal(result.StatusCode, HttpStatusCode.OK);
+ Assert.Equal(result.State, AsyncOperationState.Succeeded);
}
}
- private ClusterCreateParameters GetDataLakeClusterParameters()
+ [Fact]
+ public void TestCreateDefaultFsDataLakeClusterUsingClusterParameters()
{
- var spec = GetClusterSpecHelpers.GetCustomCreateParametersPaas();
+ var handler = new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK };
- ServicePrincipal servicePrincipal = new ServicePrincipal(new Guid(ApplicationId), new Guid(AadTenantId), CertificateFileBytes,
- CertificatePassword);
- spec.Principal = servicePrincipal;
- return spec;
+ using (var context = UndoContext.Current)
+ {
+ context.Start();
+
+ //get clients
+ var client = HDInsightManagementTestUtilities.GetHDInsightManagementClient(handler);
+ var resourceManagementClient = HDInsightManagementTestUtilities.GetResourceManagementClient(handler);
+
+ //create resourcegroup
+ var resourceGroup = HDInsightManagementTestUtilities.CreateResourceGroup(resourceManagementClient);
+
+ //set variables
+ const string dnsname = "hdisdk-defaultfsdatalake1";
+
+ var clusterCreateParams = GetDefaultFsDatalakeClusterParameters();
+
+ var createresponse = client.Clusters.Create(resourceGroup, dnsname, clusterCreateParams);
+ Assert.Equal(dnsname, createresponse.Cluster.Name);
+ Assert.Equal(createresponse.Cluster.Properties.ClusterState, "Running");
+
+ var getresponse = client.Clusters.Get(resourceGroup, dnsname);
+ Assert.Equal(createresponse.Cluster.Properties.CreatedDate, getresponse.Cluster.Properties.CreatedDate);
+ Assert.Equal(createresponse.Cluster.Name, getresponse.Cluster.Name);
+
+ // delete the cluster
+ var result = client.Clusters.Delete(resourceGroup, dnsname);
+ Assert.Equal(result.StatusCode, HttpStatusCode.OK);
+ Assert.Equal(result.State, AsyncOperationState.Succeeded);
+ }
+ }
+
+ ///
+ /// ClusterCreateParameters used for DataLake default FS
+ ///
+ ///
+ private ClusterCreateParameters GetDefaultFsDatalakeClusterParameters()
+ {
+ var clusterCreateParams = GetClusterSpecHelpers.GetDataLakeDefaultFsCreateParametersIaas();
+ clusterCreateParams.Principal = new ServicePrincipal(new Guid(ApplicationId), new Guid(AadTenantId),
+ CertificateFileBytes, CertificatePassword);
+ return clusterCreateParams;
+ }
+
+ ///
+ /// ClusterCreateParameters used for DataLake additional FS
+ ///
+ ///
+ private ClusterCreateParameters GetDataLakeClusterParameters()
+ {
+ var clusterCreateParams = GetClusterSpecHelpers.GetCustomCreateParametersPaas();
+ clusterCreateParams.Principal = new ServicePrincipal(new Guid(ApplicationId), new Guid(AadTenantId),
+ CertificateFileBytes, CertificatePassword);
+ return clusterCreateParams;
}
}
}
diff --git a/src/ResourceManagement/HDInsight/HDInsight.Tests/ScenarioTests/ScriptActionsOnRunningCluster.cs b/src/ResourceManagement/HDInsight/HDInsight.Tests/ScenarioTests/ScriptActionsOnRunningCluster.cs
index 82511a6ab0f62..c122911aa4410 100644
--- a/src/ResourceManagement/HDInsight/HDInsight.Tests/ScenarioTests/ScriptActionsOnRunningCluster.cs
+++ b/src/ResourceManagement/HDInsight/HDInsight.Tests/ScenarioTests/ScriptActionsOnRunningCluster.cs
@@ -112,9 +112,9 @@ public void TestScriptActionsOnRunningCluster()
string failingScriptUri = "http://bing.com";
//this is set only for RECORD mode, playback this uri doesnt matter
- if (!string.IsNullOrEmpty(clusterCreateParams.DefaultStorageAccountName))
+ if (HDInsightManagementTestUtilities.IsRecordMode())
{
- failingScriptUri = string.Format(FailingScriptLocationFormat, clusterCreateParams.DefaultStorageAccountName, FailingScriptLocationContainer);
+ failingScriptUri = string.Format(FailingScriptLocationFormat, clusterCreateParams.DefaultStorageInfo.StorageAccountName, FailingScriptLocationContainer);
}
var executeScriptActionParams = GetExecuteScriptActionParams(true, scriptName, failingScriptUri);
@@ -234,14 +234,14 @@ private ClusterCreateParameters CreateClusterToValidateScriptActions(string reso
client.Clusters.Create(resourceGroup, dnsName, clusterCreateParams);
HDInsightManagementTestUtilities.WaitForClusterToMoveToRunning(resourceGroup, dnsName, client);
-
- string storageAccountName =clusterCreateParams.DefaultStorageAccountName.Split('.')[0];
- //upload only in record mode, storageaccount will be empty in playback mode
- if (!string.IsNullOrEmpty(storageAccountName))
+ // upload only in record mode
+ if (HDInsightManagementTestUtilities.IsRecordMode())
{
//upload failing script to the cluster default storage account
- var creds = new StorageCredentials(storageAccountName, clusterCreateParams.DefaultStorageAccountKey);
+ var defaultStorageAccount = clusterCreateParams.DefaultStorageInfo as AzureStorageInfo;
+ var storageAccountName = defaultStorageAccount.StorageAccountName.Split('.')[0];
+ var creds = new StorageCredentials(storageAccountName, defaultStorageAccount.StorageAccountKey);
var storageAccount = new CloudStorageAccount(creds, true);
var blobClient = storageAccount.CreateCloudBlobClient();
diff --git a/src/ResourceManagement/HDInsight/HDInsight.Tests/SessionRecords/HDInsight.Tests.DataLakeTests/TestCreateDataLakeClusterUsingClusterParameters.json b/src/ResourceManagement/HDInsight/HDInsight.Tests/SessionRecords/HDInsight.Tests.DataLakeTests/TestCreateDataLakeClusterUsingClusterParameters.json
index 97ec25a7c0f63..8f65d0043ae42 100644
--- a/src/ResourceManagement/HDInsight/HDInsight.Tests/SessionRecords/HDInsight.Tests.DataLakeTests/TestCreateDataLakeClusterUsingClusterParameters.json
+++ b/src/ResourceManagement/HDInsight/HDInsight.Tests/SessionRecords/HDInsight.Tests.DataLakeTests/TestCreateDataLakeClusterUsingClusterParameters.json
@@ -1,25 +1,25 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/hdi9131?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2hkaTkxMzE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourcegroups/hdi633?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Jlc291cmNlZ3JvdXBzL2hkaTYzMz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
+ "RequestBody": "{\r\n \"location\": \"West US\"\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "31"
+ "29"
],
"User-Agent": [
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131\",\r\n \"name\": \"hdi9131\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633\",\r\n \"name\": \"hdi633\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "168"
+ "165"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -34,13 +34,13 @@
"1199"
],
"x-ms-request-id": [
- "41d45fb9-fb60-407a-a22e-0d2e29f2fca4"
+ "a1f7d9b1-d2cf-40c6-b750-f4af6aa38b10"
],
"x-ms-correlation-request-id": [
- "41d45fb9-fb60-407a-a22e-0d2e29f2fca4"
+ "a1f7d9b1-d2cf-40c6-b750-f4af6aa38b10"
],
"x-ms-routing-request-id": [
- "WESTUS2:20161016T203124Z:41d45fb9-fb60-407a-a22e-0d2e29f2fca4"
+ "SOUTHINDIA:20160721T104839Z:a1f7d9b1-d2cf-40c6-b750-f4af6aa38b10"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -49,33 +49,33 @@
"no-cache"
],
"Date": [
- "Sun, 16 Oct 2016 20:31:23 GMT"
+ "Thu, 21 Jul 2016 10:48:38 GMT"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2hkaTkxMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLWRhdGFsYWtlNT9hcGktdmVyc2lvbj0yMDE1LTAzLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Jlc291cmNlR3JvdXBzL2hkaTYzMy9wcm92aWRlcnMvTWljcm9zb2Z0LkhESW5zaWdodC9jbHVzdGVycy9oZGlzZGstZGF0YWxha2U1P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2\",\r\n \"osType\": \"Windows\",\r\n \"tier\": \"Standard\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {},\r\n \"configurations\": {\r\n \"core-site\": {\r\n \"fs.defaultFS\": \"wasb://rjaiswalsdktest@rjaiswalwestus.blob.core.windows.net\",\r\n \"fs.azure.account.key.rjaiswalwestus.blob.core.windows.net\": \"CnZnEIsJMpT3XrKY+Kmo7n5ZxRAxTO9sscdx7z9mMfNJHGv9r3hv6CPUHMCqfBLZaWVQChowZfY2Cs/BRMa4Ag==\"\r\n },\r\n \"gateway\": {\r\n \"restAuthCredential.isEnabled\": \"true\",\r\n \"restAuthCredential.username\": \"hadoopuser\",\r\n \"restAuthCredential.password\": \"Password1!\"\r\n },\r\n \"clusterIdentity\": {\r\n \"clusterIdentity.applicationId\": \"25e46bc7-65b4-4da3-a720-2fee42feb7b1\",\r\n \"clusterIdentity.aadTenantId\": \"https://login.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"clusterIdentity.certificate\": \"MIIJwAIBAzCCCXwGCSqGSIb3DQEHAaCCCW0EgglpMIIJZTCCBggGCSqGSIb3DQEHAaCCBfkEggX1MIIF8TCCBe0GCyqGSIb3DQEMCgECoIIE/jCCBPowHAYKKoZIhvcNAQwBAzAOBAiU1ojq4duMhQICB9AEggTYVjt7wp5eGDJbQMCuSWKsWFeF7+Pst0bo7ZdD5grM/Fe7WRgog8e9FjLykuG8BGLGWuJxUECudDzQuLiLqGuHNaFmvrFaU/PPUSUG9kbxahOwxujqEWERfYhT7TqeSiowamYDK+nSNAmQX5PCroWT3eHTDx+1aq86GUTb6JhHENjVUS4hX13tiP1wW4tJE9s1xl2Q0CXUXTmuQ3OZ2ilX6S++8GEdaHwlmDpbt40gyay51CIkSym1s7VFCEvKYxgV/s2vPl/JURGkWQVHB4ZFE0bAQl/+X2s0ltpyUGyUtqZhgww0YdymQTnjiuT8BNm2snP0zSEGNZj0uiGvJZ6LXKCs9mDw4yK0Z0eMPeuWYOzUqiG/FFyWbNYOxQQbYkT9f10kSMGAvCX636kpFu5qEwLmcStyccqm0icQUxR+h4Fj/EOu+rCKM8B9VGd50FhZZMhaNQ919IPl8jonqChEGmoLWmt0CBY21caLyQFkF718sz+CgWptMSbohRHEucLeaAsCkXV4O5ersySZKEYz5Qs+VTLglnOCOy2T0WHReV3Ai+xBbnxg8m4DV7QyDlbAsqBj5vyi34kWFkAr9+sndPAvtwarfSepN1yj5RgVcipRkZIOObbz02LtkFbZIVt12tf5DUApABvCEAlj4G8qwHm+NrwI9PbAO5Tvwp7eIt1vOPldAs+6tB22gxb+lXtRdDSULyDI3IqeYES9cEk6OwZh+/nLRSrby0icPM8TE9Twv5Z4iqtLWZhfvHCeQkEyMDSV9eriKlDRD9cXD9fuBB8DEolPgTwvh9mVMfwtmKqXDtswlzQEnLACkycImRUfNkTPNg9tBYt6bE+SiUTshXMAUX5sgiPnJTKMswxZrrlnqn/uzr139IRBRNztRKYTkIjjbPFAnhI3gW1M/5O3muaVNxeOsETEMaPuvxaun14PYiamkvjyvKs9+IhwWREymc4uyA+CISbWTBTzKEKqNzmrGmMTc0j1x3EaFuwjnE2StR8hix9Bir4nc9yxoOU/00HAipCR+IC61O5CsgnToMYJDkLfFxBx3BgM2iT5gGs17gkZ9s0l8ztHvErZVyOH+AdIWkS3Ru0N726h6HAuWI+vtTcGaIShfphIpBzgo7DPFNgzKUCO9ATJhbjvBTTvOvlg4LyhIDmNDDaEEoxZP4Byu7yRPYBm5rgGzNhjg4xMKZZENqbV5/ij5HaD2vXVEYqAZv6rVM1ZS7Gyxqn2aakZHbj0nGOs3PcPEiP8bpWOpiZ4C7ocrx7crgy1/vfnPItFCNzteWAfazoCa1dS9MRE6izUnRuGmcPy8X6DD/uhK2MFmXYE3bddMZnzYil3aQk2sFyKXeDZoQe1b6UNy6tPDmRuYhvpFSz3Qcc9QmtNvHUX3czqB6AsrCrTpwH/OgX6WXfY1TpLBWeqOX/2vibqrBIl2RF9Wt7YJiNqhs54beGwY79/Br5iW8n4Hgkj9QsheneTO1VXq5tD1Y+MT0vfTCRIczQz9sIn79KhV3QTmWANy0mwyJ+tEoir0ntDMpxibsNhzdeaeV6p4/SpDHP7RocnTU6mUBrbcweZrWQXA9pkSMrdowcsV46/zlC6IHeIWHHRal7Bq3P/S/VAgoiXCmz9s4BbaEQN+/KeIyRtbnKolCUNMjGB2zATBgkqhkiG9w0BCRUxBgQEAQAAADBdBgkrBgEEAYI3EQExUB5OAE0AaQBjAHIAbwBzAG8AZgB0ACAAUwB0AHIAbwBuAGcAIABDAHIAeQBwAHQAbwBnAHIAYQBwAGgAaQBjACAAUAByAG8AdgBpAGQAZQByMGUGCSqGSIb3DQEJFDFYHlYAUAB2AGsAVABtAHAAOgAxAGUAMgA0ADUAYwAxAGUALQBiADgAYwBjAC0ANABkADQAZQAtADgAMwAyADgALQA1AGMAMQA4AGYAZgAxAGUAYwA4AGEAYTCCA1UGCSqGSIb3DQEHAaCCA0YEggNCMIIDPjCCAzoGCyqGSIb3DQEMCgEDoIIDEjCCAw4GCiqGSIb3DQEJFgGgggL+BIIC+jCCAvYwggHioAMCAQICEHckCcXhyiemTCuQJ3J5Yo4wCQYFKw4DAh0FADAVMRMwEQYDVQQDEwpIREktQURMLVNQMB4XDTE2MTAxNjA3MDAwMFoXDTIwMTAxNjA3MDAwMFowFTETMBEGA1UEAxMKSERJLUFETC1TUDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL6oMZzJUQ0gNvqFmXVyFByJSy2EyrJ2ugacD1mwi/xjrQecdLxhWyE3wGtPhYMZ313X7eBX6QzvKqYLw8cH65CVCiTEB70FGvhocFCoJaZD/3eA5yFsdwAhXFrXJuIXTP09DmreOICIOF7CzYuJ8ixRDiq75IDex/0YVgUhA3PGOgKDPugmQJBGfuYjl3bVNDG5cN8JVSUFx+GbQxIxqTYbDcVoZGlwliYRs702WjBSgvsXriLTEyHYWn2c8C5FWzYLrywi9Q240npc39k+tMXGuFQ6Izm297czifX6RuQtszZsYVwE6808TvUCRsGHD5fyXEGVKfn51WpxVgiKCgMCAwEAAaNKMEgwRgYDVR0BBD8wPYAQGnapbsYH0NFgi03u8o7ifqEXMBUxEzARBgNVBAMTCkhESS1BREwtU1CCEHckCcXhyiemTCuQJ3J5Yo4wCQYFKw4DAh0FAAOCAQEAaU6HJlWlGRhQpwawzguq3ThZEszFl5G94c0NKn1/Jj7OzV99fwcLsCKNXYdgyEUsHMGcOqKpoQvftDmU7z0GRn6GLBe+zp95NJoUDAHeZDF84EBJ1ckNL0GlHAmjoUKtobfnDLZ7qXwW+i7hJMSS8T1s+ca4cwUy/sdkicnIfRR93ihh1af+o3pbldinrigJDJEWaA5n36ZVE5NR/KHICyFvjw2znzpdB7/klr3ExSr37z4/NO/O/cfypkYOPoSLX9Crxz/k7U/DQoU8cc+mdKWuEaCLe/EGi81r1hnZprLaXf6b/YQ3QcHulCSHAu1u4Uaqq71SJADJMWL9WeGuOjEVMBMGCSqGSIb3DQEJFTEGBAQBAAAAMDswHzAHBgUrDgMCGgQUeIpDF4Mfa9ePPPqHcvXwolqlXVIEFFXQvEKPAGVJmi9GR0g5GHOIqJkAAgIH0A==\",\r\n \"clusterIdentity.certificatePassword\": \"HdInsight123!\",\r\n \"clusterIdentity.resourceUri\": \"https://management.core.windows.net/\"\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\": \"Standard_D3\"\r\n },\r\n \"osProfile\": {\r\n \"windowsOperatingSystemProfile\": {}\r\n },\r\n \"scriptActions\": [\r\n {\r\n \"name\": \"action\",\r\n \"uri\": \"https://uri.com/\",\r\n \"parameters\": \"params\"\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 \"windowsOperatingSystemProfile\": {}\r\n },\r\n \"scriptActions\": [\r\n {\r\n \"name\": \"action\",\r\n \"uri\": \"https://uri.com/\",\r\n \"parameters\": \"params\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n}",
+ "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2\",\r\n \"osType\": \"Windows\",\r\n \"tier\": \"Standard\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\",\r\n \"configurations\": {\r\n \"core-site\": {\r\n \"fs.defaultFS\": \"wasb://sisankartestcsmv2@sisankarclusterstorage.blob.core.windows.net\",\r\n \"fs.azure.account.key.sisankarclusterstorage.blob.core.windows.net\": \"nYx5p1+inPH2LyVAqYyJIh1VtWshLcnp9e1yUaQ+sROK33yfm9AFRz2+8ws2jNksGaF+usEoEHc+8oojXsNNnw==\"\r\n },\r\n \"gateway\": {\r\n \"restAuthCredential.isEnabled\": \"true\",\r\n \"restAuthCredential.username\": \"admin\",\r\n \"restAuthCredential.password\": \"HdpCli123!\"\r\n },\r\n \"clusterIdentity\": {\r\n \"clusterIdentity.applicationId\": \"dd97bd76-6ddf-4c12-a416-1c2e913c549c\",\r\n \"clusterIdentity.aadTenantId\": \"https://login.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"clusterIdentity.certificate\": \"MIIJuAIBAzCCCXQGCSqGSIb3DQEHAaCCCWUEgglhMIIJXTCCBgAGCSqGSIb3DQEHAaCCBfEEggXtMIIF6TCCBeUGCyqGSIb3DQEMCgECoIIE9jCCBPIwHAYKKoZIhvcNAQwBAzAOBAgLx2gePWeQ6AICB9AEggTQzOXRpWyNjpMTqSdbzUZUqTh13RaekVaba9IdM6W45xuvv5s8vlYBRwtCrrvSk/XOuZzVM6gu+5QFGaNSERcLKq4f8dU+hLtt9uBaepRyTNUn/AJAxYFCmUK8Gs5T8lant2apwHFDgT/8sq4lAnxhxrBbmfYEjAUlxEVy3zM2VjH11jMmU1PJhDGin3fjumsi5KmFYks5Oq6aB7SF6PUTn60buTSMgcL98E/IB2vkgzP6/ipdtOR8fHdIbquLoKdQ0g5sh2o6H6MP+SUUun5INUXTICDvUSHKkOwC/w9VVCByR8e8Rc9ydEdpN6uMTCQkgqsmJq1pBeQD76retXVwxPxOFQnfZlD5ljs8pKfIZJSv7xF8IC8NLUDv5tSWX/WDD2Z2tFQMUk7khMjm1XoIQvFNIL8PpmjuGLITISjaStvYAu2mvBkX/dXQ6+i6i65GLRHcNyrCtD1XHCtw0EQR9sa3v6+DLQm/U/Bh0OPmC8tF17dcainjsIk/Ut+epvfMcUfhng8Xyw+9WBlJ+9sWPMCHvnPYzUc/3AMpi+ux0grGUbdXdIBactlHLRppMZ6s598EwCY5VbXIOEUzgtSLK+ZM/s5iy8vFDcLExu78VR9+SBciY/zVvzZwj852nf253L1QfyCr/eX/akaMAOiZpfRaeR8Y1G5Ay+nmio79OTMvmv8FyBrrysYcGUgWMtS8R7LG/7YhY7jo1m0XYHnQLSEyprIm+I0A8k5LD+bvPFuFKRkLL4E8wBf+uLFfzPO/LWroIWiEosjHl/p9IgTj/d72SIGxz8ED9qTJdUKRcGHl/m77wybVGpibpJX9ECO4FiA7kK8prtjfMv/2vdAIWUKW+LYlgXLf4X94E9tc2HG6LT1ywTkF9k9vgYXTgBsq0lxSC7DabW3e0htbi31cX7IjvvjmLiAn01h7oEAmxxpyMyD4P382jdyzdSwLE3GxtdTC1C9aa3n143szfNjShiE0pPLGDefItevw1LdQdznKm2olLaXdKYyJI5mdNUkG/ieBr/35H1j9RkY7vviwLMKu+EwDmxdrzTO4DxTKCIRjNDhrEYs3d8BZKimTAYk1oF6ytE9l4vLH1OpjCbRSdfiK6N+jKcMwXfWXLrv334ruWivUnwFNOD8Vu4DytmrTJwUXdcJraj/5RJg25WWr+b6UtfwG2e+7r8R0vTyBK8WnZWVh+/Nw6gCtWQ+7lNDKSVoByPbMcWexDnodNtnZiX647NGlIUBVNc7+aiSvwcWk10+RyG/Ge0BvBMFmGXumRLTYu7t1NF6OAg769eBWAHqdhLwG6E/1qqboSJKk6HHXp4Ztvjkmn7zqN9XAsnTLMsg9GI4QmxpfuDMPXaKPv7uHXgoFwvRwHza/F1u1O5TdMsqXPtx+45lI9XgkP2AZTeAZJYNfbA0x+3xD9mh5wD4qlFo+eBEREsIfemQS7Tzmh0JkQBC1ffyUpANg6eFrDsZ2ljBQrrr7KuVaimbJyF67PS6JrveVhzBaT8op1pWwVpFboUZcl5LgzkkxH+4K9/oa0sPrqfMJT9roULfqRKqfqJx3PcckihIwlFnXAOeEzMpM9QHznXYhvS/N5MEuaIDvWknbu3aiecLD5ZujosNfB/0bmmofHNDGr014dvUxgdswEwYJKoZIhvcNAQkVMQYEBAEAAAAwXQYJKwYBBAGCNxEBMVAeTgBNAGkAYwByAG8AcwBvAGYAdAAgAFMAdAByAG8AbgBnACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcjBlBgkqhkiG9w0BCRQxWB5WAFAAdgBrAFQAbQBwADoAMAA5ADAAYgBhADEAZgAyAC0AYQBlAGMAMwAtADQANwA2ADYALQBiADkAOAA1AC0AMAAxADMAYQA0ADMAOABiAGYANAA3ADkwggNVBgkqhkiG9w0BBwGgggNGBIIDQjCCAz4wggM6BgsqhkiG9w0BDAoBA6CCAxIwggMOBgoqhkiG9w0BCRYBoIIC/gSCAvowggL2MIIB4qADAgECAhCgPREOJVMpmUy5DXv86+sGMAkGBSsOAwIdBQAwFTETMBEGA1UEAxMKSERJLUFETC1TUDAeFw0xNjA2MTIxODMwMDBaFw0xNzA2MTIxODMwMDBaMBUxEzARBgNVBAMTCkhESS1BREwtU1AwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCmoB5rPjYqEHiKLsRm92f3EMkZ1Up26dGe1EHF+J1fdANcR7/XmAnz3hw61wPvU7mmlM9pfIoA0fP9kqXxY7YN86+Ui1NuAR9HBe5A/H9q0eV5e+3vW2hzQEeizvebS0sNQyPa0LZEjrPj7f8nNClLYNCCCOta+x8Fj5GAm5vxBUvG2sPE8thfoOQl8LhDavyfR/P/+3P9jtvKDT0YAqFHx5s8Ayssy3Ofa/KXZIkm48vCHfdSxD+IswH4MjmBFy+CltuhgX8/Zq/sfVIlTc+wl1qpOxy15vRetre7cvAisnmT3GmgALX7qHcBak4S/NvOTKtEXCTtSjN8QA4xaEgfAgMBAAGjSjBIMEYGA1UdAQQ/MD2AEHJI78TH83Z2r47ahwp8qEShFzAVMRMwEQYDVQQDEwpIREktQURMLVNQghCgPREOJVMpmUy5DXv86+sGMAkGBSsOAwIdBQADggEBAF3hwjDGNAlF6UKG/+2KdFh4Bv8LwqSRs5kuDnMVs9Jo6kY7o50DWnLT+RbbvD9Kx5A30go8OVcJuoUoGf937OPNwiWweqb22BpJcKEDnVIPrrkENcTkdvQ2PTXZXdSWFoZ/1VBOAzGoULoogEp91MU0FX/fhzf4FndYmOA/IxH3kg/AWuo8fztiHGPevalsL++NaBaLekiDuZHrhuMH6HYiQBxo6YprlDu3ENdqbDwsGJoiUV+YxDet14lNTOdnX1a3her65TYsf2PzgWepqnX7zTiOrdJ7Ip5SJEjl3YE3VYiX3cYLCV31cHjVcgqLky3JKsiqkjM7FoCcP35OWP0xFTATBgkqhkiG9w0BCRUxBgQEAQAAADA7MB8wBwYFKw4DAhoEFBJtVxhwyIcJjcJtC1TWFbjh0XH+BBSQlZcUd08689fpZSQYRWBDdZaRPAICB9A=\",\r\n \"clusterIdentity.certificatePassword\": \"Hadoop1234!\",\r\n \"clusterIdentity.resourceUri\": \"https://management.core.windows.net/\"\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\": \"Standard_D3\"\r\n },\r\n \"osProfile\": {\r\n \"windowsOperatingSystemProfile\": {}\r\n },\r\n \"scriptActions\": [\r\n {\r\n \"name\": \"action\",\r\n \"uri\": \"https://uri.com/\",\r\n \"parameters\": \"params\"\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 \"windowsOperatingSystemProfile\": {}\r\n },\r\n \"scriptActions\": [\r\n {\r\n \"name\": \"action\",\r\n \"uri\": \"https://uri.com/\",\r\n \"parameters\": \"params\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json"
],
"Content-Length": [
- "5463"
+ "5431"
],
"User-Agent": [
"ARM",
"SDK",
- "v1.3.0"
+ "v1.0.12-preview"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"a38b8299-2a3a-42ca-a9d3-96613f7b3a67\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.1080\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2016-10-16T20:31:26.783\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.cloudapp.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"807de5d6-a5b2-4f7e-be7a-c7106d173438\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.989\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2016-07-21T10:48:56.107\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.cloudapp.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "843"
+ "841"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -87,22 +87,22 @@
"no-cache"
],
"x-ms-hdi-clusteruri": [
- "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview"
+ "https://management.azure.com/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview"
],
"Azure-AsyncOperation": [
- "https://management.azure.com:443/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5/azureasyncoperations/create?api-version=2015-03-01-preview"
+ "https://management.azure.com:443/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5/azureasyncoperations/create?api-version=2015-03-01-preview"
],
"x-ms-request-id": [
- "f08ad89e-cf6b-43f3-af63-e6c5c6413317"
+ "58b12cc9-9c5d-4523-b00e-9f42d56d516a"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1198"
],
"x-ms-correlation-request-id": [
- "eb7a939b-11f3-4dc2-a9d8-e1938912c359"
+ "5f7304c2-c5db-436f-8a72-3cadae6f931b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20161016T203126Z:eb7a939b-11f3-4dc2-a9d8-e1938912c359"
+ "SOUTHINDIA:20160721T104857Z:5f7304c2-c5db-436f-8a72-3cadae6f931b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -111,10 +111,10 @@
"no-cache"
],
"Date": [
- "Sun, 16 Oct 2016 20:31:25 GMT"
+ "Thu, 21 Jul 2016 10:48:56 GMT"
],
"ETag": [
- "\"a38b8299-2a3a-42ca-a9d3-96613f7b3a67\""
+ "\"807de5d6-a5b2-4f7e-be7a-c7106d173438\""
],
"Server": [
"Microsoft-IIS/8.5"
@@ -126,21 +126,21 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2hkaTkxMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLWRhdGFsYWtlNT9hcGktdmVyc2lvbj0yMDE1LTAzLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Jlc291cmNlR3JvdXBzL2hkaTYzMy9wcm92aWRlcnMvTWljcm9zb2Z0LkhESW5zaWdodC9jbHVzdGVycy9oZGlzZGstZGF0YWxha2U1P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"ARM",
"SDK",
- "v1.3.0"
+ "v1.0.12-preview"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"a38b8299-2a3a-42ca-a9d3-96613f7b3a67\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.1080\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2016-10-16T20:31:26.783\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.cloudapp.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"807de5d6-a5b2-4f7e-be7a-c7106d173438\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.989\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2016-07-21T10:48:56.107\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.cloudapp.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "843"
+ "841"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -152,16 +152,16 @@
"no-cache"
],
"x-ms-request-id": [
- "0e7a5f27-c4b5-4326-8691-9e814ae8a31f"
+ "abd3b712-b3c3-4653-888d-d43c79116fee"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14963"
+ "14929"
],
"x-ms-correlation-request-id": [
- "c70afe9d-9bc3-4a8e-a436-1af3826cb11c"
+ "ee3690b9-a574-4e3c-8f8f-b14e06b2e51a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20161016T203126Z:c70afe9d-9bc3-4a8e-a436-1af3826cb11c"
+ "SOUTHINDIA:20160721T104857Z:ee3690b9-a574-4e3c-8f8f-b14e06b2e51a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -170,7 +170,7 @@
"no-cache"
],
"Date": [
- "Sun, 16 Oct 2016 20:31:26 GMT"
+ "Thu, 21 Jul 2016 10:48:56 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -182,21 +182,21 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2hkaTkxMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLWRhdGFsYWtlNT9hcGktdmVyc2lvbj0yMDE1LTAzLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Jlc291cmNlR3JvdXBzL2hkaTYzMy9wcm92aWRlcnMvTWljcm9zb2Z0LkhESW5zaWdodC9jbHVzdGVycy9oZGlzZGstZGF0YWxha2U1P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"ARM",
"SDK",
- "v1.3.0"
+ "v1.0.12-preview"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"a38b8299-2a3a-42ca-a9d3-96613f7b3a67\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.1080\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2016-10-16T20:31:26.783\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.cloudapp.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"807de5d6-a5b2-4f7e-be7a-c7106d173438\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.989\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2016-07-21T10:48:56.107\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.cloudapp.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "843"
+ "841"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -208,16 +208,16 @@
"no-cache"
],
"x-ms-request-id": [
- "592ee8d6-eb2e-4a00-b4fa-f1cf5a46c50a"
+ "e22e993b-bdf5-4ac6-9e67-ee5e727b8196"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14962"
+ "14927"
],
"x-ms-correlation-request-id": [
- "cacb2c79-db58-471e-95bf-ba26956adb1e"
+ "98b392f6-1f97-4115-ab7b-7a1d42a4884b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20161016T203227Z:cacb2c79-db58-471e-95bf-ba26956adb1e"
+ "SOUTHINDIA:20160721T104958Z:98b392f6-1f97-4115-ab7b-7a1d42a4884b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -226,7 +226,7 @@
"no-cache"
],
"Date": [
- "Sun, 16 Oct 2016 20:32:26 GMT"
+ "Thu, 21 Jul 2016 10:49:58 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -238,21 +238,21 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2hkaTkxMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLWRhdGFsYWtlNT9hcGktdmVyc2lvbj0yMDE1LTAzLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Jlc291cmNlR3JvdXBzL2hkaTYzMy9wcm92aWRlcnMvTWljcm9zb2Z0LkhESW5zaWdodC9jbHVzdGVycy9oZGlzZGstZGF0YWxha2U1P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"ARM",
"SDK",
- "v1.3.0"
+ "v1.0.12-preview"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"a38b8299-2a3a-42ca-a9d3-96613f7b3a67\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.1080\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2016-10-16T20:31:26.783\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.cloudapp.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"807de5d6-a5b2-4f7e-be7a-c7106d173438\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.989\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"ClusterStorageProvisioned\",\r\n \"createdDate\": \"2016-07-21T10:48:56.107\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.cloudapp.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "843"
+ "858"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -264,16 +264,16 @@
"no-cache"
],
"x-ms-request-id": [
- "b01ffd42-9560-41b4-83f1-deee2bb15648"
+ "45afb469-8f12-4307-bd55-d74a525b42a4"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14960"
+ "14925"
],
"x-ms-correlation-request-id": [
- "4ad72ffa-c517-480e-a3e7-0b96d93f318f"
+ "396f2638-3ad4-4de3-ae08-3d1d248019e2"
],
"x-ms-routing-request-id": [
- "WESTUS2:20161016T203327Z:4ad72ffa-c517-480e-a3e7-0b96d93f318f"
+ "SOUTHINDIA:20160721T105100Z:396f2638-3ad4-4de3-ae08-3d1d248019e2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -282,7 +282,7 @@
"no-cache"
],
"Date": [
- "Sun, 16 Oct 2016 20:33:26 GMT"
+ "Thu, 21 Jul 2016 10:50:59 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -294,21 +294,21 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2hkaTkxMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLWRhdGFsYWtlNT9hcGktdmVyc2lvbj0yMDE1LTAzLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Jlc291cmNlR3JvdXBzL2hkaTYzMy9wcm92aWRlcnMvTWljcm9zb2Z0LkhESW5zaWdodC9jbHVzdGVycy9oZGlzZGstZGF0YWxha2U1P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"ARM",
"SDK",
- "v1.3.0"
+ "v1.0.12-preview"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"a38b8299-2a3a-42ca-a9d3-96613f7b3a67\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.1080\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"ClusterStorageProvisioned\",\r\n \"createdDate\": \"2016-10-16T20:31:26.783\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"807de5d6-a5b2-4f7e-be7a-c7106d173438\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.989\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"ClusterStorageProvisioned\",\r\n \"createdDate\": \"2016-07-21T10:48:56.107\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "866"
+ "864"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -320,16 +320,16 @@
"no-cache"
],
"x-ms-request-id": [
- "d4aa4f4b-fcf0-4687-b73a-d13f36a133a5"
+ "0287c90f-d1b4-4af8-b33c-f6afecd715f9"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14958"
+ "14923"
],
"x-ms-correlation-request-id": [
- "ab426695-8ea5-49c8-9161-6ee15befdc32"
+ "05e5abe8-b782-42d5-b05f-4abc89541329"
],
"x-ms-routing-request-id": [
- "WESTUS2:20161016T203428Z:ab426695-8ea5-49c8-9161-6ee15befdc32"
+ "SOUTHINDIA:20160721T105200Z:05e5abe8-b782-42d5-b05f-4abc89541329"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -338,7 +338,7 @@
"no-cache"
],
"Date": [
- "Sun, 16 Oct 2016 20:34:27 GMT"
+ "Thu, 21 Jul 2016 10:51:59 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -350,21 +350,21 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2hkaTkxMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLWRhdGFsYWtlNT9hcGktdmVyc2lvbj0yMDE1LTAzLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Jlc291cmNlR3JvdXBzL2hkaTYzMy9wcm92aWRlcnMvTWljcm9zb2Z0LkhESW5zaWdodC9jbHVzdGVycy9oZGlzZGstZGF0YWxha2U1P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"ARM",
"SDK",
- "v1.3.0"
+ "v1.0.12-preview"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"a38b8299-2a3a-42ca-a9d3-96613f7b3a67\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.1080\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"ClusterStorageProvisioned\",\r\n \"createdDate\": \"2016-10-16T20:31:26.783\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"807de5d6-a5b2-4f7e-be7a-c7106d173438\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.989\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"ClusterStorageProvisioned\",\r\n \"createdDate\": \"2016-07-21T10:48:56.107\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "866"
+ "864"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -376,16 +376,16 @@
"no-cache"
],
"x-ms-request-id": [
- "e63a2f71-2222-4b57-935d-ece4cc0692f3"
+ "e84f0989-35b2-4503-bff6-3f195262b87d"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14964"
+ "14921"
],
"x-ms-correlation-request-id": [
- "ef31e289-cf28-4efa-8c33-ff08b9c6cd54"
+ "91425a20-5f24-4492-8f87-802d967f3bdf"
],
"x-ms-routing-request-id": [
- "WESTUS2:20161016T203528Z:ef31e289-cf28-4efa-8c33-ff08b9c6cd54"
+ "SOUTHINDIA:20160721T105302Z:91425a20-5f24-4492-8f87-802d967f3bdf"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -394,7 +394,7 @@
"no-cache"
],
"Date": [
- "Sun, 16 Oct 2016 20:35:28 GMT"
+ "Thu, 21 Jul 2016 10:53:02 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -406,21 +406,21 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2hkaTkxMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLWRhdGFsYWtlNT9hcGktdmVyc2lvbj0yMDE1LTAzLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Jlc291cmNlR3JvdXBzL2hkaTYzMy9wcm92aWRlcnMvTWljcm9zb2Z0LkhESW5zaWdodC9jbHVzdGVycy9oZGlzZGstZGF0YWxha2U1P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"ARM",
"SDK",
- "v1.3.0"
+ "v1.0.12-preview"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"a38b8299-2a3a-42ca-a9d3-96613f7b3a67\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.1080\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"ClusterStorageProvisioned\",\r\n \"createdDate\": \"2016-10-16T20:31:26.783\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"807de5d6-a5b2-4f7e-be7a-c7106d173438\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.989\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"ClusterStorageProvisioned\",\r\n \"createdDate\": \"2016-07-21T10:48:56.107\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "866"
+ "864"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -432,16 +432,16 @@
"no-cache"
],
"x-ms-request-id": [
- "ca6d6422-bc10-4b70-9163-8820f173fe28"
+ "d5d90460-1a60-4c45-9c3d-2c8334064a53"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14963"
+ "14917"
],
"x-ms-correlation-request-id": [
- "7e8b890c-d4af-487b-ad6f-d925653acdde"
+ "a01c54f6-caf4-49f3-8bc8-f9069c584356"
],
"x-ms-routing-request-id": [
- "WESTUS2:20161016T203629Z:7e8b890c-d4af-487b-ad6f-d925653acdde"
+ "SOUTHINDIA:20160721T105403Z:a01c54f6-caf4-49f3-8bc8-f9069c584356"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -450,7 +450,7 @@
"no-cache"
],
"Date": [
- "Sun, 16 Oct 2016 20:36:28 GMT"
+ "Thu, 21 Jul 2016 10:54:03 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -462,21 +462,21 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2hkaTkxMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLWRhdGFsYWtlNT9hcGktdmVyc2lvbj0yMDE1LTAzLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Jlc291cmNlR3JvdXBzL2hkaTYzMy9wcm92aWRlcnMvTWljcm9zb2Z0LkhESW5zaWdodC9jbHVzdGVycy9oZGlzZGstZGF0YWxha2U1P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"ARM",
"SDK",
- "v1.3.0"
+ "v1.0.12-preview"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"a38b8299-2a3a-42ca-a9d3-96613f7b3a67\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.1080\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"ClusterStorageProvisioned\",\r\n \"createdDate\": \"2016-10-16T20:31:26.783\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"807de5d6-a5b2-4f7e-be7a-c7106d173438\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.989\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"AzureVMConfiguration\",\r\n \"createdDate\": \"2016-07-21T10:48:56.107\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "866"
+ "859"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -488,16 +488,16 @@
"no-cache"
],
"x-ms-request-id": [
- "a21866d2-5d26-4e32-82b6-0a9ce6758498"
+ "ad2982b4-deba-4ed3-8c19-66a7d781b368"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14962"
+ "14923"
],
"x-ms-correlation-request-id": [
- "64d4eb9e-b4c2-4764-a4e0-7f3a5f18074d"
+ "042b45d0-3696-4395-891d-50c136fde281"
],
"x-ms-routing-request-id": [
- "WESTUS2:20161016T203729Z:64d4eb9e-b4c2-4764-a4e0-7f3a5f18074d"
+ "SOUTHINDIA:20160721T105505Z:042b45d0-3696-4395-891d-50c136fde281"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -506,7 +506,7 @@
"no-cache"
],
"Date": [
- "Sun, 16 Oct 2016 20:37:28 GMT"
+ "Thu, 21 Jul 2016 10:55:05 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -518,21 +518,21 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2hkaTkxMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLWRhdGFsYWtlNT9hcGktdmVyc2lvbj0yMDE1LTAzLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Jlc291cmNlR3JvdXBzL2hkaTYzMy9wcm92aWRlcnMvTWljcm9zb2Z0LkhESW5zaWdodC9jbHVzdGVycy9oZGlzZGstZGF0YWxha2U1P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"ARM",
"SDK",
- "v1.3.0"
+ "v1.0.12-preview"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"a38b8299-2a3a-42ca-a9d3-96613f7b3a67\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.1080\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"ClusterStorageProvisioned\",\r\n \"createdDate\": \"2016-10-16T20:31:26.783\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"807de5d6-a5b2-4f7e-be7a-c7106d173438\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.989\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"AzureVMConfiguration\",\r\n \"createdDate\": \"2016-07-21T10:48:56.107\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "866"
+ "859"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -544,16 +544,16 @@
"no-cache"
],
"x-ms-request-id": [
- "4dc4e763-f08e-4076-a606-98a41bb87614"
+ "9775e352-3391-46ee-b5df-6a8c1c2e80b0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14958"
+ "14921"
],
"x-ms-correlation-request-id": [
- "25e796ac-8955-4110-b730-0bd991e3f312"
+ "4a5ec325-0926-4951-83de-09c4e1570d73"
],
"x-ms-routing-request-id": [
- "WESTUS2:20161016T203830Z:25e796ac-8955-4110-b730-0bd991e3f312"
+ "SOUTHINDIA:20160721T105605Z:4a5ec325-0926-4951-83de-09c4e1570d73"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -562,7 +562,7 @@
"no-cache"
],
"Date": [
- "Sun, 16 Oct 2016 20:38:29 GMT"
+ "Thu, 21 Jul 2016 10:56:05 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -574,21 +574,21 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2hkaTkxMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLWRhdGFsYWtlNT9hcGktdmVyc2lvbj0yMDE1LTAzLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Jlc291cmNlR3JvdXBzL2hkaTYzMy9wcm92aWRlcnMvTWljcm9zb2Z0LkhESW5zaWdodC9jbHVzdGVycy9oZGlzZGstZGF0YWxha2U1P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"ARM",
"SDK",
- "v1.3.0"
+ "v1.0.12-preview"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"a38b8299-2a3a-42ca-a9d3-96613f7b3a67\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.1080\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"ClusterStorageProvisioned\",\r\n \"createdDate\": \"2016-10-16T20:31:26.783\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"807de5d6-a5b2-4f7e-be7a-c7106d173438\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.989\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"AzureVMConfiguration\",\r\n \"createdDate\": \"2016-07-21T10:48:56.107\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "866"
+ "859"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -600,16 +600,16 @@
"no-cache"
],
"x-ms-request-id": [
- "c05a85fd-13d6-4f02-b99d-ec97497cf5d4"
+ "533851a7-aea9-4cf1-bd25-e00e9ddb4283"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14953"
+ "14919"
],
"x-ms-correlation-request-id": [
- "3c456414-d5c0-4612-9427-c908676c9014"
+ "73bdb706-89c8-4392-bec8-d2572fe8b70a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20161016T203930Z:3c456414-d5c0-4612-9427-c908676c9014"
+ "SOUTHINDIA:20160721T105707Z:73bdb706-89c8-4392-bec8-d2572fe8b70a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -618,7 +618,7 @@
"no-cache"
],
"Date": [
- "Sun, 16 Oct 2016 20:39:30 GMT"
+ "Thu, 21 Jul 2016 10:57:06 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -630,21 +630,21 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2hkaTkxMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLWRhdGFsYWtlNT9hcGktdmVyc2lvbj0yMDE1LTAzLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Jlc291cmNlR3JvdXBzL2hkaTYzMy9wcm92aWRlcnMvTWljcm9zb2Z0LkhESW5zaWdodC9jbHVzdGVycy9oZGlzZGstZGF0YWxha2U1P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"ARM",
"SDK",
- "v1.3.0"
+ "v1.0.12-preview"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"a38b8299-2a3a-42ca-a9d3-96613f7b3a67\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.1080\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"AzureVMConfiguration\",\r\n \"createdDate\": \"2016-10-16T20:31:26.783\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"807de5d6-a5b2-4f7e-be7a-c7106d173438\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.989\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"AzureVMConfiguration\",\r\n \"createdDate\": \"2016-07-21T10:48:56.107\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "861"
+ "859"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -656,16 +656,16 @@
"no-cache"
],
"x-ms-request-id": [
- "5438860b-24d1-46d3-b019-83bdafe5c907"
+ "16619257-6d6a-4101-a14a-4ebd58f80aba"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14956"
+ "14917"
],
"x-ms-correlation-request-id": [
- "6a3ed087-0772-4429-bf62-57fa20769c4b"
+ "ddcb5557-acd0-4dec-b1a0-d20f85caf943"
],
"x-ms-routing-request-id": [
- "WESTUS2:20161016T204030Z:6a3ed087-0772-4429-bf62-57fa20769c4b"
+ "SOUTHINDIA:20160721T105808Z:ddcb5557-acd0-4dec-b1a0-d20f85caf943"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -674,7 +674,7 @@
"no-cache"
],
"Date": [
- "Sun, 16 Oct 2016 20:40:30 GMT"
+ "Thu, 21 Jul 2016 10:58:07 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -686,21 +686,21 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2hkaTkxMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLWRhdGFsYWtlNT9hcGktdmVyc2lvbj0yMDE1LTAzLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Jlc291cmNlR3JvdXBzL2hkaTYzMy9wcm92aWRlcnMvTWljcm9zb2Z0LkhESW5zaWdodC9jbHVzdGVycy9oZGlzZGstZGF0YWxha2U1P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"ARM",
"SDK",
- "v1.3.0"
+ "v1.0.12-preview"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"a38b8299-2a3a-42ca-a9d3-96613f7b3a67\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.1080\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"AzureVMConfiguration\",\r\n \"createdDate\": \"2016-10-16T20:31:26.783\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"807de5d6-a5b2-4f7e-be7a-c7106d173438\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.989\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"AzureVMConfiguration\",\r\n \"createdDate\": \"2016-07-21T10:48:56.107\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "861"
+ "859"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -712,16 +712,16 @@
"no-cache"
],
"x-ms-request-id": [
- "ca08cb01-5114-4a96-8323-d26be21b0801"
+ "0a7d553c-87d0-46f6-a13a-1e30b928ffc0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14955"
+ "14915"
],
"x-ms-correlation-request-id": [
- "67974f61-fb38-4b1f-9437-5322b868838e"
+ "38e77e67-6e75-4973-9a40-6ddad93ef3d3"
],
"x-ms-routing-request-id": [
- "WESTUS2:20161016T204131Z:67974f61-fb38-4b1f-9437-5322b868838e"
+ "SOUTHINDIA:20160721T105910Z:38e77e67-6e75-4973-9a40-6ddad93ef3d3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -730,7 +730,7 @@
"no-cache"
],
"Date": [
- "Sun, 16 Oct 2016 20:41:31 GMT"
+ "Thu, 21 Jul 2016 10:59:09 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -742,21 +742,21 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2hkaTkxMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLWRhdGFsYWtlNT9hcGktdmVyc2lvbj0yMDE1LTAzLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Jlc291cmNlR3JvdXBzL2hkaTYzMy9wcm92aWRlcnMvTWljcm9zb2Z0LkhESW5zaWdodC9jbHVzdGVycy9oZGlzZGstZGF0YWxha2U1P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"ARM",
"SDK",
- "v1.3.0"
+ "v1.0.12-preview"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"a38b8299-2a3a-42ca-a9d3-96613f7b3a67\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.1080\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"AzureVMConfiguration\",\r\n \"createdDate\": \"2016-10-16T20:31:26.783\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"807de5d6-a5b2-4f7e-be7a-c7106d173438\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.989\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"AzureVMConfiguration\",\r\n \"createdDate\": \"2016-07-21T10:48:56.107\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "861"
+ "859"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -768,16 +768,16 @@
"no-cache"
],
"x-ms-request-id": [
- "fe9c6a28-6307-430c-8a3f-351650975829"
+ "529e104e-1c33-44b2-9485-e5d9ad01392d"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14950"
+ "14913"
],
"x-ms-correlation-request-id": [
- "f9ea1d89-453f-4bd7-97e1-e445c5f51510"
+ "cdf1c30d-e604-4613-af51-ad286fdbeb31"
],
"x-ms-routing-request-id": [
- "WESTUS2:20161016T204231Z:f9ea1d89-453f-4bd7-97e1-e445c5f51510"
+ "SOUTHINDIA:20160721T110010Z:cdf1c30d-e604-4613-af51-ad286fdbeb31"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -786,7 +786,7 @@
"no-cache"
],
"Date": [
- "Sun, 16 Oct 2016 20:42:31 GMT"
+ "Thu, 21 Jul 2016 11:00:09 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -798,21 +798,21 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2hkaTkxMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLWRhdGFsYWtlNT9hcGktdmVyc2lvbj0yMDE1LTAzLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Jlc291cmNlR3JvdXBzL2hkaTYzMy9wcm92aWRlcnMvTWljcm9zb2Z0LkhESW5zaWdodC9jbHVzdGVycy9oZGlzZGstZGF0YWxha2U1P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"ARM",
"SDK",
- "v1.3.0"
+ "v1.0.12-preview"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"a38b8299-2a3a-42ca-a9d3-96613f7b3a67\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.1080\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"AzureVMConfiguration\",\r\n \"createdDate\": \"2016-10-16T20:31:26.783\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"807de5d6-a5b2-4f7e-be7a-c7106d173438\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.989\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"AzureVMConfiguration\",\r\n \"createdDate\": \"2016-07-21T10:48:56.107\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "861"
+ "859"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -824,16 +824,16 @@
"no-cache"
],
"x-ms-request-id": [
- "466e9adc-ebec-488e-9a7e-ee6058d413ef"
+ "a83aec52-1043-49a2-975f-eecb5856228a"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14948"
+ "14912"
],
"x-ms-correlation-request-id": [
- "6d163c7e-54bc-4f3a-8b44-17dd9ffccb1c"
+ "b61be401-5462-4a57-b3b0-473c51fe6543"
],
"x-ms-routing-request-id": [
- "WESTUS2:20161016T204332Z:6d163c7e-54bc-4f3a-8b44-17dd9ffccb1c"
+ "SOUTHINDIA:20160721T110112Z:b61be401-5462-4a57-b3b0-473c51fe6543"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -842,7 +842,7 @@
"no-cache"
],
"Date": [
- "Sun, 16 Oct 2016 20:43:31 GMT"
+ "Thu, 21 Jul 2016 11:01:12 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -854,21 +854,21 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2hkaTkxMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLWRhdGFsYWtlNT9hcGktdmVyc2lvbj0yMDE1LTAzLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Jlc291cmNlR3JvdXBzL2hkaTYzMy9wcm92aWRlcnMvTWljcm9zb2Z0LkhESW5zaWdodC9jbHVzdGVycy9oZGlzZGstZGF0YWxha2U1P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"ARM",
"SDK",
- "v1.3.0"
+ "v1.0.12-preview"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"a38b8299-2a3a-42ca-a9d3-96613f7b3a67\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.1080\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"AzureVMConfiguration\",\r\n \"createdDate\": \"2016-10-16T20:31:26.783\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"807de5d6-a5b2-4f7e-be7a-c7106d173438\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.989\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"AzureVMConfiguration\",\r\n \"createdDate\": \"2016-07-21T10:48:56.107\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "861"
+ "859"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -880,16 +880,16 @@
"no-cache"
],
"x-ms-request-id": [
- "9a564571-a1b4-41dc-a498-039b48cc2fc3"
+ "3ed33d43-5245-4094-95c8-70dc6781548a"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14945"
+ "14910"
],
"x-ms-correlation-request-id": [
- "ec4fef52-0979-42f6-a4ee-815266b44a88"
+ "d8316c76-8f12-4163-8a70-158efd89f775"
],
"x-ms-routing-request-id": [
- "WESTUS2:20161016T204432Z:ec4fef52-0979-42f6-a4ee-815266b44a88"
+ "SOUTHINDIA:20160721T110213Z:d8316c76-8f12-4163-8a70-158efd89f775"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -898,7 +898,7 @@
"no-cache"
],
"Date": [
- "Sun, 16 Oct 2016 20:44:31 GMT"
+ "Thu, 21 Jul 2016 11:02:12 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -910,21 +910,21 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2hkaTkxMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLWRhdGFsYWtlNT9hcGktdmVyc2lvbj0yMDE1LTAzLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Jlc291cmNlR3JvdXBzL2hkaTYzMy9wcm92aWRlcnMvTWljcm9zb2Z0LkhESW5zaWdodC9jbHVzdGVycy9oZGlzZGstZGF0YWxha2U1P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"ARM",
"SDK",
- "v1.3.0"
+ "v1.0.12-preview"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"a38b8299-2a3a-42ca-a9d3-96613f7b3a67\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.1080\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"AzureVMConfiguration\",\r\n \"createdDate\": \"2016-10-16T20:31:26.783\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"807de5d6-a5b2-4f7e-be7a-c7106d173438\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.989\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"AzureVMConfiguration\",\r\n \"createdDate\": \"2016-07-21T10:48:56.107\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "861"
+ "859"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -936,16 +936,16 @@
"no-cache"
],
"x-ms-request-id": [
- "4ae454d9-b0c3-43ef-8bb4-b77776b3066a"
+ "bf33f91d-7227-4cc7-8c27-d096a25ffda1"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14945"
+ "14908"
],
"x-ms-correlation-request-id": [
- "42179695-9b1a-4b29-80d0-b305d768c057"
+ "bfeb985a-89fd-4b3c-bb51-b7b63f1a571d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20161016T204533Z:42179695-9b1a-4b29-80d0-b305d768c057"
+ "SOUTHINDIA:20160721T110314Z:bfeb985a-89fd-4b3c-bb51-b7b63f1a571d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -954,7 +954,7 @@
"no-cache"
],
"Date": [
- "Sun, 16 Oct 2016 20:45:33 GMT"
+ "Thu, 21 Jul 2016 11:03:14 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -966,21 +966,21 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2hkaTkxMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLWRhdGFsYWtlNT9hcGktdmVyc2lvbj0yMDE1LTAzLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Jlc291cmNlR3JvdXBzL2hkaTYzMy9wcm92aWRlcnMvTWljcm9zb2Z0LkhESW5zaWdodC9jbHVzdGVycy9oZGlzZGstZGF0YWxha2U1P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"ARM",
"SDK",
- "v1.3.0"
+ "v1.0.12-preview"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"a38b8299-2a3a-42ca-a9d3-96613f7b3a67\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.1080\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"AzureVMConfiguration\",\r\n \"createdDate\": \"2016-10-16T20:31:26.783\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"807de5d6-a5b2-4f7e-be7a-c7106d173438\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.989\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"AzureVMConfiguration\",\r\n \"createdDate\": \"2016-07-21T10:48:56.107\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "861"
+ "859"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -992,16 +992,16 @@
"no-cache"
],
"x-ms-request-id": [
- "fb84c3aa-9122-43ad-9e7d-4f091486e314"
+ "5e9822d9-a59e-4965-8797-6a3e1630a789"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14943"
+ "14905"
],
"x-ms-correlation-request-id": [
- "5ba4319d-1d51-4d7e-adfe-26b010e98f3f"
+ "e9c2beda-769f-4c77-a4ed-fc44c13c0d07"
],
"x-ms-routing-request-id": [
- "WESTUS2:20161016T204634Z:5ba4319d-1d51-4d7e-adfe-26b010e98f3f"
+ "SOUTHINDIA:20160721T110415Z:e9c2beda-769f-4c77-a4ed-fc44c13c0d07"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1010,7 +1010,7 @@
"no-cache"
],
"Date": [
- "Sun, 16 Oct 2016 20:46:33 GMT"
+ "Thu, 21 Jul 2016 11:04:14 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1022,21 +1022,21 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2hkaTkxMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLWRhdGFsYWtlNT9hcGktdmVyc2lvbj0yMDE1LTAzLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Jlc291cmNlR3JvdXBzL2hkaTYzMy9wcm92aWRlcnMvTWljcm9zb2Z0LkhESW5zaWdodC9jbHVzdGVycy9oZGlzZGstZGF0YWxha2U1P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"ARM",
"SDK",
- "v1.3.0"
+ "v1.0.12-preview"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"a38b8299-2a3a-42ca-a9d3-96613f7b3a67\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.1080\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"AzureVMConfiguration\",\r\n \"createdDate\": \"2016-10-16T20:31:26.783\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"807de5d6-a5b2-4f7e-be7a-c7106d173438\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.989\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"AzureVMConfiguration\",\r\n \"createdDate\": \"2016-07-21T10:48:56.107\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "861"
+ "859"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1048,16 +1048,16 @@
"no-cache"
],
"x-ms-request-id": [
- "70a957ed-719e-4d19-8617-226b56d78cff"
+ "d064e53c-ad71-480d-b029-c8f308981463"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14942"
+ "14902"
],
"x-ms-correlation-request-id": [
- "47ec613d-a0ad-40a9-b971-11f20e7f6b7a"
+ "837139c2-e1df-4c76-952b-7c54eea1bb72"
],
"x-ms-routing-request-id": [
- "WESTUS2:20161016T204734Z:47ec613d-a0ad-40a9-b971-11f20e7f6b7a"
+ "SOUTHINDIA:20160721T110517Z:837139c2-e1df-4c76-952b-7c54eea1bb72"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1066,7 +1066,7 @@
"no-cache"
],
"Date": [
- "Sun, 16 Oct 2016 20:47:34 GMT"
+ "Thu, 21 Jul 2016 11:05:17 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1078,21 +1078,21 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2hkaTkxMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLWRhdGFsYWtlNT9hcGktdmVyc2lvbj0yMDE1LTAzLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Jlc291cmNlR3JvdXBzL2hkaTYzMy9wcm92aWRlcnMvTWljcm9zb2Z0LkhESW5zaWdodC9jbHVzdGVycy9oZGlzZGstZGF0YWxha2U1P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"ARM",
"SDK",
- "v1.3.0"
+ "v1.0.12-preview"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"a38b8299-2a3a-42ca-a9d3-96613f7b3a67\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.1080\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"AzureVMConfiguration\",\r\n \"createdDate\": \"2016-10-16T20:31:26.783\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"807de5d6-a5b2-4f7e-be7a-c7106d173438\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.989\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"AzureVMConfiguration\",\r\n \"createdDate\": \"2016-07-21T10:48:56.107\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "861"
+ "859"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1104,16 +1104,16 @@
"no-cache"
],
"x-ms-request-id": [
- "c16b0bd7-532b-4c91-beb7-a7fa1d12ad38"
+ "c476fbea-5efb-4552-af2e-34e404f3c32a"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14939"
+ "14898"
],
"x-ms-correlation-request-id": [
- "3d73ab51-bf1e-44e1-ae8b-e1d719ede899"
+ "2714e4ed-5c41-4d89-9113-5443809a8dba"
],
"x-ms-routing-request-id": [
- "WESTUS2:20161016T204835Z:3d73ab51-bf1e-44e1-ae8b-e1d719ede899"
+ "SOUTHINDIA:20160721T110617Z:2714e4ed-5c41-4d89-9113-5443809a8dba"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1122,7 +1122,7 @@
"no-cache"
],
"Date": [
- "Sun, 16 Oct 2016 20:48:34 GMT"
+ "Thu, 21 Jul 2016 11:06:17 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1134,21 +1134,21 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2hkaTkxMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLWRhdGFsYWtlNT9hcGktdmVyc2lvbj0yMDE1LTAzLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Jlc291cmNlR3JvdXBzL2hkaTYzMy9wcm92aWRlcnMvTWljcm9zb2Z0LkhESW5zaWdodC9jbHVzdGVycy9oZGlzZGstZGF0YWxha2U1P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"ARM",
"SDK",
- "v1.3.0"
+ "v1.0.12-preview"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"a38b8299-2a3a-42ca-a9d3-96613f7b3a67\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.1080\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"AzureVMConfiguration\",\r\n \"createdDate\": \"2016-10-16T20:31:26.783\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"807de5d6-a5b2-4f7e-be7a-c7106d173438\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.989\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"AzureVMConfiguration\",\r\n \"createdDate\": \"2016-07-21T10:48:56.107\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "861"
+ "859"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1160,16 +1160,16 @@
"no-cache"
],
"x-ms-request-id": [
- "c81f0b70-ffa3-4c56-b4d2-02bad951f2b4"
+ "b58517e2-a932-455d-8652-1dd9ef4422b8"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14937"
+ "14893"
],
"x-ms-correlation-request-id": [
- "59ad799e-f981-43bf-9c58-90e0b70e2c62"
+ "9afa1cee-ac4d-44ef-8725-f31898207a20"
],
"x-ms-routing-request-id": [
- "WESTUS2:20161016T204935Z:59ad799e-f981-43bf-9c58-90e0b70e2c62"
+ "SOUTHINDIA:20160721T110719Z:9afa1cee-ac4d-44ef-8725-f31898207a20"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1178,7 +1178,7 @@
"no-cache"
],
"Date": [
- "Sun, 16 Oct 2016 20:49:35 GMT"
+ "Thu, 21 Jul 2016 11:07:19 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1190,21 +1190,21 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2hkaTkxMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLWRhdGFsYWtlNT9hcGktdmVyc2lvbj0yMDE1LTAzLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Jlc291cmNlR3JvdXBzL2hkaTYzMy9wcm92aWRlcnMvTWljcm9zb2Z0LkhESW5zaWdodC9jbHVzdGVycy9oZGlzZGstZGF0YWxha2U1P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"ARM",
"SDK",
- "v1.3.0"
+ "v1.0.12-preview"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"a38b8299-2a3a-42ca-a9d3-96613f7b3a67\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.1080\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"AzureVMConfiguration\",\r\n \"createdDate\": \"2016-10-16T20:31:26.783\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"807de5d6-a5b2-4f7e-be7a-c7106d173438\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.989\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"AzureVMConfiguration\",\r\n \"createdDate\": \"2016-07-21T10:48:56.107\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "861"
+ "859"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1216,16 +1216,16 @@
"no-cache"
],
"x-ms-request-id": [
- "161038df-6b2e-4bc2-910e-aeec442bd6e6"
+ "2bbace69-47c0-4c23-945a-d230ed07f86f"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14935"
+ "14885"
],
"x-ms-correlation-request-id": [
- "4d4f1409-706a-4e36-ad3c-9a0efd96e014"
+ "94ea29d3-7c21-4fb1-929f-520642af1ea3"
],
"x-ms-routing-request-id": [
- "WESTUS2:20161016T205036Z:4d4f1409-706a-4e36-ad3c-9a0efd96e014"
+ "SOUTHINDIA:20160721T110820Z:94ea29d3-7c21-4fb1-929f-520642af1ea3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1234,7 +1234,7 @@
"no-cache"
],
"Date": [
- "Sun, 16 Oct 2016 20:50:35 GMT"
+ "Thu, 21 Jul 2016 11:08:20 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1246,21 +1246,21 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2hkaTkxMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLWRhdGFsYWtlNT9hcGktdmVyc2lvbj0yMDE1LTAzLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Jlc291cmNlR3JvdXBzL2hkaTYzMy9wcm92aWRlcnMvTWljcm9zb2Z0LkhESW5zaWdodC9jbHVzdGVycy9oZGlzZGstZGF0YWxha2U1P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"ARM",
"SDK",
- "v1.3.0"
+ "v1.0.12-preview"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"a38b8299-2a3a-42ca-a9d3-96613f7b3a67\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.1080\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"AzureVMConfiguration\",\r\n \"createdDate\": \"2016-10-16T20:31:26.783\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"807de5d6-a5b2-4f7e-be7a-c7106d173438\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.989\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"AzureVMConfiguration\",\r\n \"createdDate\": \"2016-07-21T10:48:56.107\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "861"
+ "859"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1272,16 +1272,16 @@
"no-cache"
],
"x-ms-request-id": [
- "338af609-9172-415f-80a3-4b41fe5a9b77"
+ "5433d950-7efa-4b60-b774-3bfb2bcd9089"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14934"
+ "14882"
],
"x-ms-correlation-request-id": [
- "740ebc21-50b7-41f1-9ba1-7900c3d30a0c"
+ "9839cc85-97fe-49e3-9f6b-0221283b4c72"
],
"x-ms-routing-request-id": [
- "WESTUS2:20161016T205136Z:740ebc21-50b7-41f1-9ba1-7900c3d30a0c"
+ "SOUTHINDIA:20160721T110922Z:9839cc85-97fe-49e3-9f6b-0221283b4c72"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1290,7 +1290,7 @@
"no-cache"
],
"Date": [
- "Sun, 16 Oct 2016 20:51:35 GMT"
+ "Thu, 21 Jul 2016 11:09:22 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1302,21 +1302,21 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2hkaTkxMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLWRhdGFsYWtlNT9hcGktdmVyc2lvbj0yMDE1LTAzLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Jlc291cmNlR3JvdXBzL2hkaTYzMy9wcm92aWRlcnMvTWljcm9zb2Z0LkhESW5zaWdodC9jbHVzdGVycy9oZGlzZGstZGF0YWxha2U1P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"ARM",
"SDK",
- "v1.3.0"
+ "v1.0.12-preview"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"a38b8299-2a3a-42ca-a9d3-96613f7b3a67\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.1080\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"AzureVMConfiguration\",\r\n \"createdDate\": \"2016-10-16T20:31:26.783\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"807de5d6-a5b2-4f7e-be7a-c7106d173438\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.989\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"AzureVMConfiguration\",\r\n \"createdDate\": \"2016-07-21T10:48:56.107\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "861"
+ "859"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1328,16 +1328,16 @@
"no-cache"
],
"x-ms-request-id": [
- "3290fd8e-ea60-4be4-a7a5-efc46885c578"
+ "2b43d9b6-61de-466b-8608-be612b5a5456"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14933"
+ "14886"
],
"x-ms-correlation-request-id": [
- "859eb67f-9a62-472e-89cc-e2a453110a87"
+ "e28a0785-aab3-4258-b1bf-b39b34166c3f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20161016T205236Z:859eb67f-9a62-472e-89cc-e2a453110a87"
+ "SOUTHINDIA:20160721T111024Z:e28a0785-aab3-4258-b1bf-b39b34166c3f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1346,7 +1346,7 @@
"no-cache"
],
"Date": [
- "Sun, 16 Oct 2016 20:52:35 GMT"
+ "Thu, 21 Jul 2016 11:10:23 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1358,21 +1358,21 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2hkaTkxMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLWRhdGFsYWtlNT9hcGktdmVyc2lvbj0yMDE1LTAzLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Jlc291cmNlR3JvdXBzL2hkaTYzMy9wcm92aWRlcnMvTWljcm9zb2Z0LkhESW5zaWdodC9jbHVzdGVycy9oZGlzZGstZGF0YWxha2U1P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"ARM",
"SDK",
- "v1.3.0"
+ "v1.0.12-preview"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"a38b8299-2a3a-42ca-a9d3-96613f7b3a67\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.1080\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"AzureVMConfiguration\",\r\n \"createdDate\": \"2016-10-16T20:31:26.783\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"807de5d6-a5b2-4f7e-be7a-c7106d173438\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.989\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"ClusterCustomization\",\r\n \"createdDate\": \"2016-07-21T10:48:56.107\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "861"
+ "859"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1384,16 +1384,16 @@
"no-cache"
],
"x-ms-request-id": [
- "06e43d0d-7949-4f18-912a-6f390030bd1f"
+ "f58bc77a-d8bc-489c-a558-f9d456abb796"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14932"
+ "14884"
],
"x-ms-correlation-request-id": [
- "4048bd69-e2a7-4548-85bd-617db42ff6e2"
+ "88b02184-ef22-4d5d-a311-5d7e031c5b47"
],
"x-ms-routing-request-id": [
- "WESTUS2:20161016T205337Z:4048bd69-e2a7-4548-85bd-617db42ff6e2"
+ "SOUTHINDIA:20160721T111126Z:88b02184-ef22-4d5d-a311-5d7e031c5b47"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1402,7 +1402,7 @@
"no-cache"
],
"Date": [
- "Sun, 16 Oct 2016 20:53:37 GMT"
+ "Thu, 21 Jul 2016 11:11:25 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1414,21 +1414,21 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2hkaTkxMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLWRhdGFsYWtlNT9hcGktdmVyc2lvbj0yMDE1LTAzLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Jlc291cmNlR3JvdXBzL2hkaTYzMy9wcm92aWRlcnMvTWljcm9zb2Z0LkhESW5zaWdodC9jbHVzdGVycy9oZGlzZGstZGF0YWxha2U1P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"ARM",
"SDK",
- "v1.3.0"
+ "v1.0.12-preview"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"a38b8299-2a3a-42ca-a9d3-96613f7b3a67\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.1080\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"AzureVMConfiguration\",\r\n \"createdDate\": \"2016-10-16T20:31:26.783\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"807de5d6-a5b2-4f7e-be7a-c7106d173438\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.989\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"ClusterCustomization\",\r\n \"createdDate\": \"2016-07-21T10:48:56.107\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "861"
+ "859"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1440,16 +1440,16 @@
"no-cache"
],
"x-ms-request-id": [
- "17b5c6a9-e85d-4d56-8314-09faf9d03019"
+ "b9644ccf-08cf-4336-84e3-45bc3945b6cc"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14931"
+ "14882"
],
"x-ms-correlation-request-id": [
- "913564d9-7825-4e24-8d4c-fa1ad6a9c029"
+ "28537ba9-0e88-40f9-9345-3892e5a1f186"
],
"x-ms-routing-request-id": [
- "WESTUS2:20161016T205437Z:913564d9-7825-4e24-8d4c-fa1ad6a9c029"
+ "SOUTHINDIA:20160721T111228Z:28537ba9-0e88-40f9-9345-3892e5a1f186"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1458,7 +1458,7 @@
"no-cache"
],
"Date": [
- "Sun, 16 Oct 2016 20:54:36 GMT"
+ "Thu, 21 Jul 2016 11:12:27 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1470,21 +1470,21 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2hkaTkxMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLWRhdGFsYWtlNT9hcGktdmVyc2lvbj0yMDE1LTAzLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Jlc291cmNlR3JvdXBzL2hkaTYzMy9wcm92aWRlcnMvTWljcm9zb2Z0LkhESW5zaWdodC9jbHVzdGVycy9oZGlzZGstZGF0YWxha2U1P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"ARM",
"SDK",
- "v1.3.0"
+ "v1.0.12-preview"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"a38b8299-2a3a-42ca-a9d3-96613f7b3a67\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.1080\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"AzureVMConfiguration\",\r\n \"createdDate\": \"2016-10-16T20:31:26.783\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"807de5d6-a5b2-4f7e-be7a-c7106d173438\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.989\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"ClusterCustomization\",\r\n \"createdDate\": \"2016-07-21T10:48:56.107\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "861"
+ "859"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1496,16 +1496,16 @@
"no-cache"
],
"x-ms-request-id": [
- "3ff6925c-50ce-4147-98bc-6dce4dd91703"
+ "288e9c90-9258-43c1-8cf3-cee013a141cd"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14932"
+ "14879"
],
"x-ms-correlation-request-id": [
- "140faf3c-53e5-4d70-b732-4bfdb989ddc2"
+ "3c7c43d2-2cab-4893-93df-c60f6ee26ef1"
],
"x-ms-routing-request-id": [
- "WESTUS2:20161016T205537Z:140faf3c-53e5-4d70-b732-4bfdb989ddc2"
+ "SOUTHINDIA:20160721T111329Z:3c7c43d2-2cab-4893-93df-c60f6ee26ef1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1514,7 +1514,7 @@
"no-cache"
],
"Date": [
- "Sun, 16 Oct 2016 20:55:36 GMT"
+ "Thu, 21 Jul 2016 11:13:29 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1526,21 +1526,21 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2hkaTkxMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLWRhdGFsYWtlNT9hcGktdmVyc2lvbj0yMDE1LTAzLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Jlc291cmNlR3JvdXBzL2hkaTYzMy9wcm92aWRlcnMvTWljcm9zb2Z0LkhESW5zaWdodC9jbHVzdGVycy9oZGlzZGstZGF0YWxha2U1P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"ARM",
"SDK",
- "v1.3.0"
+ "v1.0.12-preview"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"a38b8299-2a3a-42ca-a9d3-96613f7b3a67\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.1080\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"ClusterCustomization\",\r\n \"createdDate\": \"2016-10-16T20:31:26.783\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"807de5d6-a5b2-4f7e-be7a-c7106d173438\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.989\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"ClusterCustomization\",\r\n \"createdDate\": \"2016-07-21T10:48:56.107\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "861"
+ "859"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1552,16 +1552,16 @@
"no-cache"
],
"x-ms-request-id": [
- "20195ae8-f41c-4e52-be97-e7c702adc659"
+ "00d73290-366d-46dc-84d5-899410017cf6"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14930"
+ "14876"
],
"x-ms-correlation-request-id": [
- "84f6113d-97fe-418f-bd9f-b5ce90ddb662"
+ "881a9d30-0272-452a-a4b1-c9f7419d478c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20161016T205638Z:84f6113d-97fe-418f-bd9f-b5ce90ddb662"
+ "SOUTHINDIA:20160721T111432Z:881a9d30-0272-452a-a4b1-c9f7419d478c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1570,7 +1570,7 @@
"no-cache"
],
"Date": [
- "Sun, 16 Oct 2016 20:56:38 GMT"
+ "Thu, 21 Jul 2016 11:14:31 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1582,21 +1582,21 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2hkaTkxMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLWRhdGFsYWtlNT9hcGktdmVyc2lvbj0yMDE1LTAzLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Jlc291cmNlR3JvdXBzL2hkaTYzMy9wcm92aWRlcnMvTWljcm9zb2Z0LkhESW5zaWdodC9jbHVzdGVycy9oZGlzZGstZGF0YWxha2U1P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"ARM",
"SDK",
- "v1.3.0"
+ "v1.0.12-preview"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"a38b8299-2a3a-42ca-a9d3-96613f7b3a67\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.1080\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"ClusterCustomization\",\r\n \"createdDate\": \"2016-10-16T20:31:26.783\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"807de5d6-a5b2-4f7e-be7a-c7106d173438\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.989\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"ClusterCustomization\",\r\n \"createdDate\": \"2016-07-21T10:48:56.107\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "861"
+ "859"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1608,16 +1608,16 @@
"no-cache"
],
"x-ms-request-id": [
- "f608e091-d423-464b-a68e-661f0165186c"
+ "52ad6023-ba2f-4ef5-9e6e-e8f44149813c"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14928"
+ "14879"
],
"x-ms-correlation-request-id": [
- "90af29ce-7d4e-4165-9ffc-7af5b87f148a"
+ "7b64ffaa-95f3-4df6-bb83-4b76dba92762"
],
"x-ms-routing-request-id": [
- "WESTUS2:20161016T205738Z:90af29ce-7d4e-4165-9ffc-7af5b87f148a"
+ "SOUTHINDIA:20160721T111534Z:7b64ffaa-95f3-4df6-bb83-4b76dba92762"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1626,7 +1626,7 @@
"no-cache"
],
"Date": [
- "Sun, 16 Oct 2016 20:57:38 GMT"
+ "Thu, 21 Jul 2016 11:15:33 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1638,21 +1638,21 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2hkaTkxMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLWRhdGFsYWtlNT9hcGktdmVyc2lvbj0yMDE1LTAzLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Jlc291cmNlR3JvdXBzL2hkaTYzMy9wcm92aWRlcnMvTWljcm9zb2Z0LkhESW5zaWdodC9jbHVzdGVycy9oZGlzZGstZGF0YWxha2U1P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"ARM",
"SDK",
- "v1.3.0"
+ "v1.0.12-preview"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"a38b8299-2a3a-42ca-a9d3-96613f7b3a67\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.1080\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"ClusterCustomization\",\r\n \"createdDate\": \"2016-10-16T20:31:26.783\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"807de5d6-a5b2-4f7e-be7a-c7106d173438\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.989\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"ClusterCustomization\",\r\n \"createdDate\": \"2016-07-21T10:48:56.107\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "861"
+ "859"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1664,16 +1664,16 @@
"no-cache"
],
"x-ms-request-id": [
- "0cc3511d-2398-418d-9022-ca113aaaea45"
+ "5c3a7284-7c1d-4389-b000-b5fe1e096ed2"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14927"
+ "14876"
],
"x-ms-correlation-request-id": [
- "a3e741eb-482a-4dc1-9045-f2259eb9e8c0"
+ "280648f0-e7a5-4031-8026-a14dc4927e96"
],
"x-ms-routing-request-id": [
- "WESTUS2:20161016T205838Z:a3e741eb-482a-4dc1-9045-f2259eb9e8c0"
+ "SOUTHINDIA:20160721T111635Z:280648f0-e7a5-4031-8026-a14dc4927e96"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1682,7 +1682,7 @@
"no-cache"
],
"Date": [
- "Sun, 16 Oct 2016 20:58:38 GMT"
+ "Thu, 21 Jul 2016 11:16:35 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1694,21 +1694,21 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2hkaTkxMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLWRhdGFsYWtlNT9hcGktdmVyc2lvbj0yMDE1LTAzLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Jlc291cmNlR3JvdXBzL2hkaTYzMy9wcm92aWRlcnMvTWljcm9zb2Z0LkhESW5zaWdodC9jbHVzdGVycy9oZGlzZGstZGF0YWxha2U1P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"ARM",
"SDK",
- "v1.3.0"
+ "v1.0.12-preview"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"a38b8299-2a3a-42ca-a9d3-96613f7b3a67\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.1080\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"ClusterCustomization\",\r\n \"createdDate\": \"2016-10-16T20:31:26.783\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"807de5d6-a5b2-4f7e-be7a-c7106d173438\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.989\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"ClusterCustomization\",\r\n \"createdDate\": \"2016-07-21T10:48:56.107\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "861"
+ "859"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1720,16 +1720,16 @@
"no-cache"
],
"x-ms-request-id": [
- "95c8914c-34be-42c3-a7d2-4056fe08ada5"
+ "b55546f3-5db6-4dbd-aeb4-8f54b12024a1"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14923"
+ "14872"
],
"x-ms-correlation-request-id": [
- "524457e3-f467-4c6d-a5a7-914d75557ea4"
+ "88da54b3-2ae8-4910-a881-3e226490bb3b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20161016T205939Z:524457e3-f467-4c6d-a5a7-914d75557ea4"
+ "SOUTHINDIA:20160721T111736Z:88da54b3-2ae8-4910-a881-3e226490bb3b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1738,7 +1738,7 @@
"no-cache"
],
"Date": [
- "Sun, 16 Oct 2016 20:59:38 GMT"
+ "Thu, 21 Jul 2016 11:17:35 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1750,21 +1750,21 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2hkaTkxMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLWRhdGFsYWtlNT9hcGktdmVyc2lvbj0yMDE1LTAzLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Jlc291cmNlR3JvdXBzL2hkaTYzMy9wcm92aWRlcnMvTWljcm9zb2Z0LkhESW5zaWdodC9jbHVzdGVycy9oZGlzZGstZGF0YWxha2U1P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"ARM",
"SDK",
- "v1.3.0"
+ "v1.0.12-preview"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"a38b8299-2a3a-42ca-a9d3-96613f7b3a67\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.1080\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"ClusterCustomization\",\r\n \"createdDate\": \"2016-10-16T20:31:26.783\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"807de5d6-a5b2-4f7e-be7a-c7106d173438\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.989\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"ClusterCustomization\",\r\n \"createdDate\": \"2016-07-21T10:48:56.107\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "861"
+ "859"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1776,16 +1776,16 @@
"no-cache"
],
"x-ms-request-id": [
- "81a73fb7-fa44-4440-aeab-95f8760b3797"
+ "36a8bcfa-1b4f-4ba1-87d5-18bfc3a85b5f"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14918"
+ "14866"
],
"x-ms-correlation-request-id": [
- "feb9bf5a-034b-497f-9108-ed21ad6095cf"
+ "0984da3f-6678-4451-ab60-969a3446c0d1"
],
"x-ms-routing-request-id": [
- "WESTUS2:20161016T210039Z:feb9bf5a-034b-497f-9108-ed21ad6095cf"
+ "SOUTHINDIA:20160721T111836Z:0984da3f-6678-4451-ab60-969a3446c0d1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1794,7 +1794,7 @@
"no-cache"
],
"Date": [
- "Sun, 16 Oct 2016 21:00:39 GMT"
+ "Thu, 21 Jul 2016 11:18:36 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1806,21 +1806,21 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2hkaTkxMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLWRhdGFsYWtlNT9hcGktdmVyc2lvbj0yMDE1LTAzLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Jlc291cmNlR3JvdXBzL2hkaTYzMy9wcm92aWRlcnMvTWljcm9zb2Z0LkhESW5zaWdodC9jbHVzdGVycy9oZGlzZGstZGF0YWxha2U1P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"ARM",
"SDK",
- "v1.3.0"
+ "v1.0.12-preview"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"a38b8299-2a3a-42ca-a9d3-96613f7b3a67\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.1080\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2016-10-16T20:31:26.783\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"ClusterCustomizationError\",\r\n \"message\": \"Cluster deployment failed due to an error in the custom script action.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"807de5d6-a5b2-4f7e-be7a-c7106d173438\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.989\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2016-07-21T10:48:56.107\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"ClusterCustomizationError\",\r\n \"message\": \"Cluster deployment failed due to an error in the custom script action.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "973"
+ "971"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1832,16 +1832,16 @@
"no-cache"
],
"x-ms-request-id": [
- "e33d3be8-699f-4f36-98f8-589116ae998c"
+ "4251673d-c925-4bbd-8d62-d2a90f9d51b9"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14914"
+ "14864"
],
"x-ms-correlation-request-id": [
- "0f716253-7df6-4e3a-9e40-1eb87130da9e"
+ "e5ec023d-158a-438a-8e16-0d266b349ef9"
],
"x-ms-routing-request-id": [
- "WESTUS2:20161016T210140Z:0f716253-7df6-4e3a-9e40-1eb87130da9e"
+ "SOUTHINDIA:20160721T111938Z:e5ec023d-158a-438a-8e16-0d266b349ef9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1850,7 +1850,7 @@
"no-cache"
],
"Date": [
- "Sun, 16 Oct 2016 21:01:39 GMT"
+ "Thu, 21 Jul 2016 11:19:38 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1862,21 +1862,21 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2hkaTkxMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLWRhdGFsYWtlNT9hcGktdmVyc2lvbj0yMDE1LTAzLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Jlc291cmNlR3JvdXBzL2hkaTYzMy9wcm92aWRlcnMvTWljcm9zb2Z0LkhESW5zaWdodC9jbHVzdGVycy9oZGlzZGstZGF0YWxha2U1P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"ARM",
"SDK",
- "v1.3.0"
+ "v1.0.12-preview"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"a38b8299-2a3a-42ca-a9d3-96613f7b3a67\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.1080\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2016-10-16T20:31:26.783\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"ClusterCustomizationError\",\r\n \"message\": \"Cluster deployment failed due to an error in the custom script action.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5\",\r\n \"name\": \"hdisdk-datalake5\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"807de5d6-a5b2-4f7e-be7a-c7106d173438\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.7.989\",\r\n \"osType\": \"Windows\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HeadNode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\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 }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2016-07-21T10:48:56.107\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"ClusterCustomizationError\",\r\n \"message\": \"Cluster deployment failed due to an error in the custom script action.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-datalake5.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "973"
+ "971"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1888,16 +1888,16 @@
"no-cache"
],
"x-ms-request-id": [
- "8da47776-7f66-416c-b5ef-7a801cae87af"
+ "b0aa7a10-efdc-4080-925c-c01149ef66c6"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14913"
+ "14863"
],
"x-ms-correlation-request-id": [
- "341ed1f1-57ee-45c2-94ef-1e0f9196615e"
+ "87943c1d-12ad-4e13-a443-913a92a9b5c9"
],
"x-ms-routing-request-id": [
- "WESTUS2:20161016T210140Z:341ed1f1-57ee-45c2-94ef-1e0f9196615e"
+ "SOUTHINDIA:20160721T111950Z:87943c1d-12ad-4e13-a443-913a92a9b5c9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1906,7 +1906,7 @@
"no-cache"
],
"Date": [
- "Sun, 16 Oct 2016 21:01:39 GMT"
+ "Thu, 21 Jul 2016 11:19:49 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1918,15 +1918,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi9131/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2hkaTkxMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLWRhdGFsYWtlNT9hcGktdmVyc2lvbj0yMDE1LTAzLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi633/providers/Microsoft.HDInsight/clusters/hdisdk-datalake5?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Jlc291cmNlR3JvdXBzL2hkaTYzMy9wcm92aWRlcnMvTWljcm9zb2Z0LkhESW5zaWdodC9jbHVzdGVycy9oZGlzZGstZGF0YWxha2U1P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"ARM",
"SDK",
- "v1.3.0"
+ "v1.0.12-preview"
]
},
"ResponseBody": "",
@@ -1944,19 +1944,19 @@
"60"
],
"Azure-AsyncOperation": [
- "https://management.azure.com:443/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/West US/azureasyncoperations/10b8cfbc-e2af-4fdd-b0ed-0235238c046f-0?api-version=2015-03-01-preview"
+ "https://management.azure.com:443/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/providers/Microsoft.HDInsight/locations/East US/azureasyncoperations/a7a55919-f0fa-414b-9cfd-67dd0f14bb39-0?api-version=2015-03-01-preview"
],
"x-ms-request-id": [
- "bb0a3d6e-dc9d-4ec5-b4ec-09c36f7fc5d2"
+ "ecd2075b-ec57-454b-9c44-585f3dff953c"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1197"
],
"x-ms-correlation-request-id": [
- "8d26e777-0b88-44bf-a8ab-4db2c77cb30f"
+ "3734f15c-c473-4827-bcf8-96fbfc82fc94"
],
"x-ms-routing-request-id": [
- "WESTUS2:20161016T210141Z:8d26e777-0b88-44bf-a8ab-4db2c77cb30f"
+ "SOUTHINDIA:20160721T112022Z:3734f15c-c473-4827-bcf8-96fbfc82fc94"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1965,10 +1965,10 @@
"no-cache"
],
"Date": [
- "Sun, 16 Oct 2016 21:01:40 GMT"
+ "Thu, 21 Jul 2016 11:20:22 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/West%20US/operationresults/10b8cfbc-e2af-4fdd-b0ed-0235238c046f-0?api-version=2015-03-01-preview"
+ "https://management.azure.com/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/providers/Microsoft.HDInsight/locations/East%20US/operationresults/a7a55919-f0fa-414b-9cfd-67dd0f14bb39-0?api-version=2015-03-01-preview"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1980,133 +1980,15 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/West%20US/azureasyncoperations/10b8cfbc-e2af-4fdd-b0ed-0235238c046f-0?api-version=2015-03-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9XZXN0JTIwVVMvYXp1cmVhc3luY29wZXJhdGlvbnMvMTBiOGNmYmMtZTJhZi00ZmRkLWIwZWQtMDIzNTIzOGMwNDZmLTA/YXBpLXZlcnNpb249MjAxNS0wMy0wMS1wcmV2aWV3",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "ARM",
- "SDK",
- "v1.3.0"
- ],
- "x-ms-version": [
- "2015-03-01-preview"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "521e4893-e91f-483a-b691-87992a37ce4d"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14912"
- ],
- "x-ms-correlation-request-id": [
- "3b731834-e8e3-44dd-a5a5-e43d180f42a5"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20161016T210142Z:3b731834-e8e3-44dd-a5a5-e43d180f42a5"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Sun, 16 Oct 2016 21:01:41 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/West%20US/azureasyncoperations/10b8cfbc-e2af-4fdd-b0ed-0235238c046f-0?api-version=2015-03-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9XZXN0JTIwVVMvYXp1cmVhc3luY29wZXJhdGlvbnMvMTBiOGNmYmMtZTJhZi00ZmRkLWIwZWQtMDIzNTIzOGMwNDZmLTA/YXBpLXZlcnNpb249MjAxNS0wMy0wMS1wcmV2aWV3",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "ARM",
- "SDK",
- "v1.3.0"
- ],
- "x-ms-version": [
- "2015-03-01-preview"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "ae70e2b4-a5dc-4217-80cd-899944066146"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14907"
- ],
- "x-ms-correlation-request-id": [
- "f3d2a96e-52f7-4610-b589-4de303ca4443"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20161016T210242Z:f3d2a96e-52f7-4610-b589-4de303ca4443"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Sun, 16 Oct 2016 21:02:42 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/West%20US/azureasyncoperations/10b8cfbc-e2af-4fdd-b0ed-0235238c046f-0?api-version=2015-03-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9XZXN0JTIwVVMvYXp1cmVhc3luY29wZXJhdGlvbnMvMTBiOGNmYmMtZTJhZi00ZmRkLWIwZWQtMDIzNTIzOGMwNDZmLTA/YXBpLXZlcnNpb249MjAxNS0wMy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/providers/Microsoft.HDInsight/locations/East%20US/azureasyncoperations/a7a55919-f0fa-414b-9cfd-67dd0f14bb39-0?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9FYXN0JTIwVVMvYXp1cmVhc3luY29wZXJhdGlvbnMvYTdhNTU5MTktZjBmYS00MTRiLTljZmQtNjdkZDBmMTRiYjM5LTA/YXBpLXZlcnNpb249MjAxNS0wMy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"ARM",
"SDK",
- "v1.3.0"
+ "v1.0.12-preview"
],
"x-ms-version": [
"2015-03-01-preview"
@@ -2127,16 +2009,16 @@
"no-cache"
],
"x-ms-request-id": [
- "31070d6b-7cf9-4f99-a35c-f1dbe08cb6b3"
+ "9983f269-2baa-476c-b590-f785599e098b"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14906"
+ "14870"
],
"x-ms-correlation-request-id": [
- "ee5750cb-b365-49a1-aeab-5e38d6cdb88a"
+ "89a96618-45f3-4e21-9830-8a5ef47a79f5"
],
"x-ms-routing-request-id": [
- "WESTUS2:20161016T210343Z:ee5750cb-b365-49a1-aeab-5e38d6cdb88a"
+ "SOUTHINDIA:20160721T112024Z:89a96618-45f3-4e21-9830-8a5ef47a79f5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2145,7 +2027,7 @@
"no-cache"
],
"Date": [
- "Sun, 16 Oct 2016 21:03:43 GMT"
+ "Thu, 21 Jul 2016 11:20:23 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2157,15 +2039,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/West%20US/azureasyncoperations/10b8cfbc-e2af-4fdd-b0ed-0235238c046f-0?api-version=2015-03-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9XZXN0JTIwVVMvYXp1cmVhc3luY29wZXJhdGlvbnMvMTBiOGNmYmMtZTJhZi00ZmRkLWIwZWQtMDIzNTIzOGMwNDZmLTA/YXBpLXZlcnNpb249MjAxNS0wMy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/providers/Microsoft.HDInsight/locations/East%20US/azureasyncoperations/a7a55919-f0fa-414b-9cfd-67dd0f14bb39-0?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9FYXN0JTIwVVMvYXp1cmVhc3luY29wZXJhdGlvbnMvYTdhNTU5MTktZjBmYS00MTRiLTljZmQtNjdkZDBmMTRiYjM5LTA/YXBpLXZlcnNpb249MjAxNS0wMy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"ARM",
"SDK",
- "v1.3.0"
+ "v1.0.12-preview"
],
"x-ms-version": [
"2015-03-01-preview"
@@ -2186,16 +2068,16 @@
"no-cache"
],
"x-ms-request-id": [
- "0002ae45-fb68-41c0-8aa8-6ab53187fea2"
+ "5dde9c0e-6c9e-4174-9d3c-1545e7b0a080"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14905"
+ "14866"
],
"x-ms-correlation-request-id": [
- "3eb2ee7c-b5e7-4900-a17f-7bc63e85024f"
+ "2978525d-e7cd-45e8-87b5-8065f25e39ca"
],
"x-ms-routing-request-id": [
- "WESTUS2:20161016T210443Z:3eb2ee7c-b5e7-4900-a17f-7bc63e85024f"
+ "SOUTHINDIA:20160721T112125Z:2978525d-e7cd-45e8-87b5-8065f25e39ca"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2204,7 +2086,7 @@
"no-cache"
],
"Date": [
- "Sun, 16 Oct 2016 21:04:42 GMT"
+ "Thu, 21 Jul 2016 11:21:25 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2216,15 +2098,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/West%20US/azureasyncoperations/10b8cfbc-e2af-4fdd-b0ed-0235238c046f-0?api-version=2015-03-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9XZXN0JTIwVVMvYXp1cmVhc3luY29wZXJhdGlvbnMvMTBiOGNmYmMtZTJhZi00ZmRkLWIwZWQtMDIzNTIzOGMwNDZmLTA/YXBpLXZlcnNpb249MjAxNS0wMy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/providers/Microsoft.HDInsight/locations/East%20US/azureasyncoperations/a7a55919-f0fa-414b-9cfd-67dd0f14bb39-0?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9FYXN0JTIwVVMvYXp1cmVhc3luY29wZXJhdGlvbnMvYTdhNTU5MTktZjBmYS00MTRiLTljZmQtNjdkZDBmMTRiYjM5LTA/YXBpLXZlcnNpb249MjAxNS0wMy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"ARM",
"SDK",
- "v1.3.0"
+ "v1.0.12-preview"
],
"x-ms-version": [
"2015-03-01-preview"
@@ -2245,16 +2127,16 @@
"no-cache"
],
"x-ms-request-id": [
- "f4b5b21e-2cff-4c7d-9692-7b16d1013c7c"
+ "e0a858d6-93f7-4631-9bc4-f96a0b49de12"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14905"
+ "14864"
],
"x-ms-correlation-request-id": [
- "5ee54be1-9f7e-4441-b4cb-f3a009ddfb93"
+ "8b066341-665c-4182-bedd-3c686a9a2cec"
],
"x-ms-routing-request-id": [
- "WESTUS2:20161016T210544Z:5ee54be1-9f7e-4441-b4cb-f3a009ddfb93"
+ "SOUTHINDIA:20160721T112227Z:8b066341-665c-4182-bedd-3c686a9a2cec"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2263,7 +2145,7 @@
"no-cache"
],
"Date": [
- "Sun, 16 Oct 2016 21:05:43 GMT"
+ "Thu, 21 Jul 2016 11:22:27 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2275,15 +2157,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/West%20US/azureasyncoperations/10b8cfbc-e2af-4fdd-b0ed-0235238c046f-0?api-version=2015-03-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9XZXN0JTIwVVMvYXp1cmVhc3luY29wZXJhdGlvbnMvMTBiOGNmYmMtZTJhZi00ZmRkLWIwZWQtMDIzNTIzOGMwNDZmLTA/YXBpLXZlcnNpb249MjAxNS0wMy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/providers/Microsoft.HDInsight/locations/East%20US/azureasyncoperations/a7a55919-f0fa-414b-9cfd-67dd0f14bb39-0?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9FYXN0JTIwVVMvYXp1cmVhc3luY29wZXJhdGlvbnMvYTdhNTU5MTktZjBmYS00MTRiLTljZmQtNjdkZDBmMTRiYjM5LTA/YXBpLXZlcnNpb249MjAxNS0wMy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"ARM",
"SDK",
- "v1.3.0"
+ "v1.0.12-preview"
],
"x-ms-version": [
"2015-03-01-preview"
@@ -2304,16 +2186,16 @@
"no-cache"
],
"x-ms-request-id": [
- "cb431331-0960-428f-bb8b-c9466428b535"
+ "6570f2af-de88-4da5-9384-f3fd76ba22b9"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14904"
+ "14862"
],
"x-ms-correlation-request-id": [
- "f3dbd27a-b7cb-4e96-af63-0ef979076419"
+ "d6e2ddff-fbe1-4108-8d48-a557b3a966a4"
],
"x-ms-routing-request-id": [
- "WESTUS2:20161016T210644Z:f3dbd27a-b7cb-4e96-af63-0ef979076419"
+ "SOUTHINDIA:20160721T112329Z:d6e2ddff-fbe1-4108-8d48-a557b3a966a4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2322,7 +2204,7 @@
"no-cache"
],
"Date": [
- "Sun, 16 Oct 2016 21:06:44 GMT"
+ "Thu, 21 Jul 2016 11:23:29 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2334,15 +2216,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/West%20US/azureasyncoperations/10b8cfbc-e2af-4fdd-b0ed-0235238c046f-0?api-version=2015-03-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9XZXN0JTIwVVMvYXp1cmVhc3luY29wZXJhdGlvbnMvMTBiOGNmYmMtZTJhZi00ZmRkLWIwZWQtMDIzNTIzOGMwNDZmLTA/YXBpLXZlcnNpb249MjAxNS0wMy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/providers/Microsoft.HDInsight/locations/East%20US/azureasyncoperations/a7a55919-f0fa-414b-9cfd-67dd0f14bb39-0?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9FYXN0JTIwVVMvYXp1cmVhc3luY29wZXJhdGlvbnMvYTdhNTU5MTktZjBmYS00MTRiLTljZmQtNjdkZDBmMTRiYjM5LTA/YXBpLXZlcnNpb249MjAxNS0wMy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"ARM",
"SDK",
- "v1.3.0"
+ "v1.0.12-preview"
],
"x-ms-version": [
"2015-03-01-preview"
@@ -2363,16 +2245,16 @@
"no-cache"
],
"x-ms-request-id": [
- "33a3fd68-1e22-42e5-abbc-bc3471961759"
+ "f365e250-2c8c-4f17-9b8b-6be34522f299"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14902"
+ "14860"
],
"x-ms-correlation-request-id": [
- "1868c385-6c4a-47bc-b3ae-daa7d06ef303"
+ "d916d405-0867-4305-b4c8-10cf081542fb"
],
"x-ms-routing-request-id": [
- "WESTUS2:20161016T210745Z:1868c385-6c4a-47bc-b3ae-daa7d06ef303"
+ "SOUTHINDIA:20160721T112430Z:d916d405-0867-4305-b4c8-10cf081542fb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2381,7 +2263,7 @@
"no-cache"
],
"Date": [
- "Sun, 16 Oct 2016 21:07:45 GMT"
+ "Thu, 21 Jul 2016 11:24:30 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2395,10 +2277,10 @@
],
"Names": {
"CreateResourceGroup": [
- "hdi9131"
+ "hdi633"
]
},
"Variables": {
- "SubscriptionId": "964c10bb-8a6c-43bc-83d3-6b318c6c7305"
+ "SubscriptionId": "26d6d535-5164-443d-82f6-4c695caf7688"
}
}
\ No newline at end of file
diff --git a/src/ResourceManagement/HDInsight/HDInsight.Tests/SessionRecords/HDInsight.Tests.DataLakeTests/TestCreateDefaultFsDataLakeClusterUsingClusterParameters.json b/src/ResourceManagement/HDInsight/HDInsight.Tests/SessionRecords/HDInsight.Tests.DataLakeTests/TestCreateDefaultFsDataLakeClusterUsingClusterParameters.json
new file mode 100644
index 0000000000000..091325eec558e
--- /dev/null
+++ b/src/ResourceManagement/HDInsight/HDInsight.Tests/SessionRecords/HDInsight.Tests.DataLakeTests/TestCreateDefaultFsDataLakeClusterUsingClusterParameters.json
@@ -0,0 +1,1856 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourcegroups/hdi5231?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Jlc291cmNlZ3JvdXBzL2hkaTUyMzE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"West US\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "29"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi5231\",\r\n \"name\": \"hdi5231\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "167"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-request-id": [
+ "ba1e3a31-613f-4726-98dd-63acfe8f5a6e"
+ ],
+ "x-ms-correlation-request-id": [
+ "ba1e3a31-613f-4726-98dd-63acfe8f5a6e"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20160721T084230Z:ba1e3a31-613f-4726-98dd-63acfe8f5a6e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 21 Jul 2016 08:42:29 GMT"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi5231/providers/Microsoft.HDInsight/clusters/hdisdk-defaultfsdatalake1?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Jlc291cmNlR3JvdXBzL2hkaTUyMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLWRlZmF1bHRmc2RhdGFsYWtlMT9hcGktdmVyc2lvbj0yMDE1LTAzLTAxLXByZXZpZXc=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2\",\r\n \"osType\": \"Linux\",\r\n \"tier\": \"Standard\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\",\r\n \"configurations\": {\r\n \"core-site\": {\r\n \"fs.defaultFS\": \"adl://sisankaradlstore.azuredatalakestore.net\"\r\n },\r\n \"gateway\": {\r\n \"restAuthCredential.isEnabled\": \"true\",\r\n \"restAuthCredential.username\": \"admin\",\r\n \"restAuthCredential.password\": \"HdpCli123!\"\r\n },\r\n \"clusterIdentity\": {\r\n \"clusterIdentity.applicationId\": \"dd97bd76-6ddf-4c12-a416-1c2e913c549c\",\r\n \"clusterIdentity.aadTenantId\": \"https://login.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"clusterIdentity.certificate\": \"MIIJuAIBAzCCCXQGCSqGSIb3DQEHAaCCCWUEgglhMIIJXTCCBgAGCSqGSIb3DQEHAaCCBfEEggXtMIIF6TCCBeUGCyqGSIb3DQEMCgECoIIE9jCCBPIwHAYKKoZIhvcNAQwBAzAOBAgLx2gePWeQ6AICB9AEggTQzOXRpWyNjpMTqSdbzUZUqTh13RaekVaba9IdM6W45xuvv5s8vlYBRwtCrrvSk/XOuZzVM6gu+5QFGaNSERcLKq4f8dU+hLtt9uBaepRyTNUn/AJAxYFCmUK8Gs5T8lant2apwHFDgT/8sq4lAnxhxrBbmfYEjAUlxEVy3zM2VjH11jMmU1PJhDGin3fjumsi5KmFYks5Oq6aB7SF6PUTn60buTSMgcL98E/IB2vkgzP6/ipdtOR8fHdIbquLoKdQ0g5sh2o6H6MP+SUUun5INUXTICDvUSHKkOwC/w9VVCByR8e8Rc9ydEdpN6uMTCQkgqsmJq1pBeQD76retXVwxPxOFQnfZlD5ljs8pKfIZJSv7xF8IC8NLUDv5tSWX/WDD2Z2tFQMUk7khMjm1XoIQvFNIL8PpmjuGLITISjaStvYAu2mvBkX/dXQ6+i6i65GLRHcNyrCtD1XHCtw0EQR9sa3v6+DLQm/U/Bh0OPmC8tF17dcainjsIk/Ut+epvfMcUfhng8Xyw+9WBlJ+9sWPMCHvnPYzUc/3AMpi+ux0grGUbdXdIBactlHLRppMZ6s598EwCY5VbXIOEUzgtSLK+ZM/s5iy8vFDcLExu78VR9+SBciY/zVvzZwj852nf253L1QfyCr/eX/akaMAOiZpfRaeR8Y1G5Ay+nmio79OTMvmv8FyBrrysYcGUgWMtS8R7LG/7YhY7jo1m0XYHnQLSEyprIm+I0A8k5LD+bvPFuFKRkLL4E8wBf+uLFfzPO/LWroIWiEosjHl/p9IgTj/d72SIGxz8ED9qTJdUKRcGHl/m77wybVGpibpJX9ECO4FiA7kK8prtjfMv/2vdAIWUKW+LYlgXLf4X94E9tc2HG6LT1ywTkF9k9vgYXTgBsq0lxSC7DabW3e0htbi31cX7IjvvjmLiAn01h7oEAmxxpyMyD4P382jdyzdSwLE3GxtdTC1C9aa3n143szfNjShiE0pPLGDefItevw1LdQdznKm2olLaXdKYyJI5mdNUkG/ieBr/35H1j9RkY7vviwLMKu+EwDmxdrzTO4DxTKCIRjNDhrEYs3d8BZKimTAYk1oF6ytE9l4vLH1OpjCbRSdfiK6N+jKcMwXfWXLrv334ruWivUnwFNOD8Vu4DytmrTJwUXdcJraj/5RJg25WWr+b6UtfwG2e+7r8R0vTyBK8WnZWVh+/Nw6gCtWQ+7lNDKSVoByPbMcWexDnodNtnZiX647NGlIUBVNc7+aiSvwcWk10+RyG/Ge0BvBMFmGXumRLTYu7t1NF6OAg769eBWAHqdhLwG6E/1qqboSJKk6HHXp4Ztvjkmn7zqN9XAsnTLMsg9GI4QmxpfuDMPXaKPv7uHXgoFwvRwHza/F1u1O5TdMsqXPtx+45lI9XgkP2AZTeAZJYNfbA0x+3xD9mh5wD4qlFo+eBEREsIfemQS7Tzmh0JkQBC1ffyUpANg6eFrDsZ2ljBQrrr7KuVaimbJyF67PS6JrveVhzBaT8op1pWwVpFboUZcl5LgzkkxH+4K9/oa0sPrqfMJT9roULfqRKqfqJx3PcckihIwlFnXAOeEzMpM9QHznXYhvS/N5MEuaIDvWknbu3aiecLD5ZujosNfB/0bmmofHNDGr014dvUxgdswEwYJKoZIhvcNAQkVMQYEBAEAAAAwXQYJKwYBBAGCNxEBMVAeTgBNAGkAYwByAG8AcwBvAGYAdAAgAFMAdAByAG8AbgBnACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcjBlBgkqhkiG9w0BCRQxWB5WAFAAdgBrAFQAbQBwADoAMAA5ADAAYgBhADEAZgAyAC0AYQBlAGMAMwAtADQANwA2ADYALQBiADkAOAA1AC0AMAAxADMAYQA0ADMAOABiAGYANAA3ADkwggNVBgkqhkiG9w0BBwGgggNGBIIDQjCCAz4wggM6BgsqhkiG9w0BDAoBA6CCAxIwggMOBgoqhkiG9w0BCRYBoIIC/gSCAvowggL2MIIB4qADAgECAhCgPREOJVMpmUy5DXv86+sGMAkGBSsOAwIdBQAwFTETMBEGA1UEAxMKSERJLUFETC1TUDAeFw0xNjA2MTIxODMwMDBaFw0xNzA2MTIxODMwMDBaMBUxEzARBgNVBAMTCkhESS1BREwtU1AwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCmoB5rPjYqEHiKLsRm92f3EMkZ1Up26dGe1EHF+J1fdANcR7/XmAnz3hw61wPvU7mmlM9pfIoA0fP9kqXxY7YN86+Ui1NuAR9HBe5A/H9q0eV5e+3vW2hzQEeizvebS0sNQyPa0LZEjrPj7f8nNClLYNCCCOta+x8Fj5GAm5vxBUvG2sPE8thfoOQl8LhDavyfR/P/+3P9jtvKDT0YAqFHx5s8Ayssy3Ofa/KXZIkm48vCHfdSxD+IswH4MjmBFy+CltuhgX8/Zq/sfVIlTc+wl1qpOxy15vRetre7cvAisnmT3GmgALX7qHcBak4S/NvOTKtEXCTtSjN8QA4xaEgfAgMBAAGjSjBIMEYGA1UdAQQ/MD2AEHJI78TH83Z2r47ahwp8qEShFzAVMRMwEQYDVQQDEwpIREktQURMLVNQghCgPREOJVMpmUy5DXv86+sGMAkGBSsOAwIdBQADggEBAF3hwjDGNAlF6UKG/+2KdFh4Bv8LwqSRs5kuDnMVs9Jo6kY7o50DWnLT+RbbvD9Kx5A30go8OVcJuoUoGf937OPNwiWweqb22BpJcKEDnVIPrrkENcTkdvQ2PTXZXdSWFoZ/1VBOAzGoULoogEp91MU0FX/fhzf4FndYmOA/IxH3kg/AWuo8fztiHGPevalsL++NaBaLekiDuZHrhuMH6HYiQBxo6YprlDu3ENdqbDwsGJoiUV+YxDet14lNTOdnX1a3her65TYsf2PzgWepqnX7zTiOrdJ7Ip5SJEjl3YE3VYiX3cYLCV31cHjVcgqLky3JKsiqkjM7FoCcP35OWP0xFTATBgkqhkiG9w0BCRUxBgQEAQAAADA7MB8wBwYFKw4DAhoEFBJtVxhwyIcJjcJtC1TWFbjh0XH+BBSQlZcUd08689fpZSQYRWBDdZaRPAICB9A=\",\r\n \"clusterIdentity.certificatePassword\": \"Hadoop1234!\",\r\n \"clusterIdentity.resourceUri\": \"https://management.core.windows.net/\"\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\": \"Standard_D3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sisankar\",\r\n \"password\": \"Hadoop1234!\"\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\": \"sisankar\",\r\n \"password\": \"Hadoop1234!\"\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\": \"sisankar\",\r\n \"password\": \"Hadoop1234!\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json"
+ ],
+ "Content-Length": [
+ "5396"
+ ],
+ "User-Agent": [
+ "ARM",
+ "SDK",
+ "v1.0.12-preview"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi5231/providers/Microsoft.HDInsight/clusters/hdisdk-defaultfsdatalake1\",\r\n \"name\": \"hdisdk-defaultfsdatalake1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"67dcd361-9037-4e4f-943d-5ef5a884df3e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.7932505.json\",\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sisankar\"\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\": \"sisankar\"\r\n }\r\n }\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\": \"sisankar\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2016-07-21T08:42:53.7\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"tier\": \"standard\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1117"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-hdi-clusteruri": [
+ "https://management.azure.com/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi5231/providers/Microsoft.HDInsight/clusters/hdisdk-defaultfsdatalake1?api-version=2015-03-01-preview"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com:443/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi5231/providers/Microsoft.HDInsight/clusters/hdisdk-defaultfsdatalake1/azureasyncoperations/create?api-version=2015-03-01-preview"
+ ],
+ "x-ms-request-id": [
+ "bb4c1513-4e30-4a86-a4ae-bbc9802176d1"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
+ ],
+ "x-ms-correlation-request-id": [
+ "ef0a613c-05fd-4787-b3cd-d7d1f1da97d8"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20160721T084254Z:ef0a613c-05fd-4787-b3cd-d7d1f1da97d8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 21 Jul 2016 08:42:54 GMT"
+ ],
+ "ETag": [
+ "\"67dcd361-9037-4e4f-943d-5ef5a884df3e\""
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi5231/providers/Microsoft.HDInsight/clusters/hdisdk-defaultfsdatalake1?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Jlc291cmNlR3JvdXBzL2hkaTUyMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLWRlZmF1bHRmc2RhdGFsYWtlMT9hcGktdmVyc2lvbj0yMDE1LTAzLTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "ARM",
+ "SDK",
+ "v1.0.12-preview"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi5231/providers/Microsoft.HDInsight/clusters/hdisdk-defaultfsdatalake1\",\r\n \"name\": \"hdisdk-defaultfsdatalake1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"67dcd361-9037-4e4f-943d-5ef5a884df3e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.7932505.json\",\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sisankar\"\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\": \"sisankar\"\r\n }\r\n }\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\": \"sisankar\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2016-07-21T08:42:53.7\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"tier\": \"standard\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1117"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "193dc4be-9f7f-47c8-9f59-229fbeb99dfe"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14913"
+ ],
+ "x-ms-correlation-request-id": [
+ "d8a68cce-a351-4640-b33e-0301e966c982"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20160721T084255Z:d8a68cce-a351-4640-b33e-0301e966c982"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 21 Jul 2016 08:42:55 GMT"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi5231/providers/Microsoft.HDInsight/clusters/hdisdk-defaultfsdatalake1?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Jlc291cmNlR3JvdXBzL2hkaTUyMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLWRlZmF1bHRmc2RhdGFsYWtlMT9hcGktdmVyc2lvbj0yMDE1LTAzLTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "ARM",
+ "SDK",
+ "v1.0.12-preview"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi5231/providers/Microsoft.HDInsight/clusters/hdisdk-defaultfsdatalake1\",\r\n \"name\": \"hdisdk-defaultfsdatalake1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"67dcd361-9037-4e4f-943d-5ef5a884df3e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.7932505.json\",\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sisankar\"\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\": \"sisankar\"\r\n }\r\n }\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\": \"sisankar\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"ClusterStorageConfiguration\",\r\n \"createdDate\": \"2016-07-21T08:42:53.7\",\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-defaultfsdatalake1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-defaultfsdatalake1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1369"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "234bfbbb-9073-449b-83ad-0766dac358da"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14911"
+ ],
+ "x-ms-correlation-request-id": [
+ "b8f0c1f1-929f-460f-98f5-2ea4fa452cb9"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20160721T084357Z:b8f0c1f1-929f-460f-98f5-2ea4fa452cb9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 21 Jul 2016 08:43:57 GMT"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi5231/providers/Microsoft.HDInsight/clusters/hdisdk-defaultfsdatalake1?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Jlc291cmNlR3JvdXBzL2hkaTUyMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLWRlZmF1bHRmc2RhdGFsYWtlMT9hcGktdmVyc2lvbj0yMDE1LTAzLTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "ARM",
+ "SDK",
+ "v1.0.12-preview"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi5231/providers/Microsoft.HDInsight/clusters/hdisdk-defaultfsdatalake1\",\r\n \"name\": \"hdisdk-defaultfsdatalake1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"67dcd361-9037-4e4f-943d-5ef5a884df3e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.7932505.json\",\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sisankar\"\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\": \"sisankar\"\r\n }\r\n }\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\": \"sisankar\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"ClusterStorageConfiguration\",\r\n \"createdDate\": \"2016-07-21T08:42:53.7\",\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-defaultfsdatalake1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-defaultfsdatalake1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1369"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "c47d4c81-4333-4299-addb-db12aec0c061"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14909"
+ ],
+ "x-ms-correlation-request-id": [
+ "ac3fea23-22d1-4b3a-af8b-80d19bb6eff0"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20160721T084458Z:ac3fea23-22d1-4b3a-af8b-80d19bb6eff0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 21 Jul 2016 08:44:58 GMT"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi5231/providers/Microsoft.HDInsight/clusters/hdisdk-defaultfsdatalake1?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Jlc291cmNlR3JvdXBzL2hkaTUyMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLWRlZmF1bHRmc2RhdGFsYWtlMT9hcGktdmVyc2lvbj0yMDE1LTAzLTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "ARM",
+ "SDK",
+ "v1.0.12-preview"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi5231/providers/Microsoft.HDInsight/clusters/hdisdk-defaultfsdatalake1\",\r\n \"name\": \"hdisdk-defaultfsdatalake1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"67dcd361-9037-4e4f-943d-5ef5a884df3e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.7932505.json\",\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sisankar\"\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\": \"sisankar\"\r\n }\r\n }\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\": \"sisankar\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"AzureVMConfiguration\",\r\n \"createdDate\": \"2016-07-21T08:42:53.7\",\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-defaultfsdatalake1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-defaultfsdatalake1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1362"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "e6a93a6f-addf-41f1-b33d-2b542255b52b"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14911"
+ ],
+ "x-ms-correlation-request-id": [
+ "58bae223-ec44-4f2f-ae7f-574cace72875"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20160721T084559Z:58bae223-ec44-4f2f-ae7f-574cace72875"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 21 Jul 2016 08:45:58 GMT"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi5231/providers/Microsoft.HDInsight/clusters/hdisdk-defaultfsdatalake1?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Jlc291cmNlR3JvdXBzL2hkaTUyMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLWRlZmF1bHRmc2RhdGFsYWtlMT9hcGktdmVyc2lvbj0yMDE1LTAzLTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "ARM",
+ "SDK",
+ "v1.0.12-preview"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi5231/providers/Microsoft.HDInsight/clusters/hdisdk-defaultfsdatalake1\",\r\n \"name\": \"hdisdk-defaultfsdatalake1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"67dcd361-9037-4e4f-943d-5ef5a884df3e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.7932505.json\",\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sisankar\"\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\": \"sisankar\"\r\n }\r\n }\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\": \"sisankar\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"AzureVMConfiguration\",\r\n \"createdDate\": \"2016-07-21T08:42:53.7\",\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-defaultfsdatalake1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-defaultfsdatalake1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1362"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "fd5b06e5-1277-4c74-b029-4271f0efc5bb"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14909"
+ ],
+ "x-ms-correlation-request-id": [
+ "89aa9d94-6d41-408c-a8ef-e518c887862e"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20160721T084702Z:89aa9d94-6d41-408c-a8ef-e518c887862e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 21 Jul 2016 08:47:01 GMT"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi5231/providers/Microsoft.HDInsight/clusters/hdisdk-defaultfsdatalake1?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Jlc291cmNlR3JvdXBzL2hkaTUyMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLWRlZmF1bHRmc2RhdGFsYWtlMT9hcGktdmVyc2lvbj0yMDE1LTAzLTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "ARM",
+ "SDK",
+ "v1.0.12-preview"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi5231/providers/Microsoft.HDInsight/clusters/hdisdk-defaultfsdatalake1\",\r\n \"name\": \"hdisdk-defaultfsdatalake1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"67dcd361-9037-4e4f-943d-5ef5a884df3e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.7932505.json\",\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sisankar\"\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\": \"sisankar\"\r\n }\r\n }\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\": \"sisankar\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"AzureVMConfiguration\",\r\n \"createdDate\": \"2016-07-21T08:42:53.7\",\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-defaultfsdatalake1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-defaultfsdatalake1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1362"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "26921eac-e0d7-4c13-92b3-557e38283e21"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14907"
+ ],
+ "x-ms-correlation-request-id": [
+ "3aa238ce-74bb-4fce-a2b6-e41c5445b7e3"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20160721T084804Z:3aa238ce-74bb-4fce-a2b6-e41c5445b7e3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 21 Jul 2016 08:48:03 GMT"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi5231/providers/Microsoft.HDInsight/clusters/hdisdk-defaultfsdatalake1?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Jlc291cmNlR3JvdXBzL2hkaTUyMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLWRlZmF1bHRmc2RhdGFsYWtlMT9hcGktdmVyc2lvbj0yMDE1LTAzLTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "ARM",
+ "SDK",
+ "v1.0.12-preview"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi5231/providers/Microsoft.HDInsight/clusters/hdisdk-defaultfsdatalake1\",\r\n \"name\": \"hdisdk-defaultfsdatalake1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"67dcd361-9037-4e4f-943d-5ef5a884df3e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.7932505.json\",\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sisankar\"\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\": \"sisankar\"\r\n }\r\n }\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\": \"sisankar\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"AzureVMConfiguration\",\r\n \"createdDate\": \"2016-07-21T08:42:53.7\",\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-defaultfsdatalake1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-defaultfsdatalake1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1362"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "d06629bb-eb92-42d4-a847-aa38b0c33712"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14905"
+ ],
+ "x-ms-correlation-request-id": [
+ "a61009d4-9514-4585-af76-b197772eb401"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20160721T084906Z:a61009d4-9514-4585-af76-b197772eb401"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 21 Jul 2016 08:49:06 GMT"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi5231/providers/Microsoft.HDInsight/clusters/hdisdk-defaultfsdatalake1?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Jlc291cmNlR3JvdXBzL2hkaTUyMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLWRlZmF1bHRmc2RhdGFsYWtlMT9hcGktdmVyc2lvbj0yMDE1LTAzLTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "ARM",
+ "SDK",
+ "v1.0.12-preview"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi5231/providers/Microsoft.HDInsight/clusters/hdisdk-defaultfsdatalake1\",\r\n \"name\": \"hdisdk-defaultfsdatalake1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"67dcd361-9037-4e4f-943d-5ef5a884df3e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.7932505.json\",\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sisankar\"\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\": \"sisankar\"\r\n }\r\n }\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\": \"sisankar\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"AzureVMConfiguration\",\r\n \"createdDate\": \"2016-07-21T08:42:53.7\",\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-defaultfsdatalake1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-defaultfsdatalake1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1362"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "f4a9f118-1455-4b68-b5da-4dcf8b0a0c62"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14911"
+ ],
+ "x-ms-correlation-request-id": [
+ "7d3bc173-42fb-47d2-987c-f2b928e0fd62"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20160721T085009Z:7d3bc173-42fb-47d2-987c-f2b928e0fd62"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 21 Jul 2016 08:50:08 GMT"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi5231/providers/Microsoft.HDInsight/clusters/hdisdk-defaultfsdatalake1?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Jlc291cmNlR3JvdXBzL2hkaTUyMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLWRlZmF1bHRmc2RhdGFsYWtlMT9hcGktdmVyc2lvbj0yMDE1LTAzLTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "ARM",
+ "SDK",
+ "v1.0.12-preview"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi5231/providers/Microsoft.HDInsight/clusters/hdisdk-defaultfsdatalake1\",\r\n \"name\": \"hdisdk-defaultfsdatalake1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"67dcd361-9037-4e4f-943d-5ef5a884df3e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.7932505.json\",\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sisankar\"\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\": \"sisankar\"\r\n }\r\n }\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\": \"sisankar\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"AzureVMConfiguration\",\r\n \"createdDate\": \"2016-07-21T08:42:53.7\",\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-defaultfsdatalake1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-defaultfsdatalake1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1362"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "801cfb92-3ac1-42ec-9e95-9bab213f8520"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14909"
+ ],
+ "x-ms-correlation-request-id": [
+ "0821f834-54de-4e7c-9cb4-ddb7356c1754"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20160721T085111Z:0821f834-54de-4e7c-9cb4-ddb7356c1754"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 21 Jul 2016 08:51:11 GMT"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi5231/providers/Microsoft.HDInsight/clusters/hdisdk-defaultfsdatalake1?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Jlc291cmNlR3JvdXBzL2hkaTUyMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLWRlZmF1bHRmc2RhdGFsYWtlMT9hcGktdmVyc2lvbj0yMDE1LTAzLTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "ARM",
+ "SDK",
+ "v1.0.12-preview"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi5231/providers/Microsoft.HDInsight/clusters/hdisdk-defaultfsdatalake1\",\r\n \"name\": \"hdisdk-defaultfsdatalake1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"67dcd361-9037-4e4f-943d-5ef5a884df3e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.7932505.json\",\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sisankar\"\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\": \"sisankar\"\r\n }\r\n }\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\": \"sisankar\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"HdInsightConfiguration\",\r\n \"createdDate\": \"2016-07-21T08:42:53.7\",\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-defaultfsdatalake1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-defaultfsdatalake1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1364"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "947bbd83-37b4-4d7a-bb1d-04f34520f875"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14907"
+ ],
+ "x-ms-correlation-request-id": [
+ "e17ce045-1cba-4327-9104-ee197505ae2a"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20160721T085213Z:e17ce045-1cba-4327-9104-ee197505ae2a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 21 Jul 2016 08:52:13 GMT"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi5231/providers/Microsoft.HDInsight/clusters/hdisdk-defaultfsdatalake1?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Jlc291cmNlR3JvdXBzL2hkaTUyMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLWRlZmF1bHRmc2RhdGFsYWtlMT9hcGktdmVyc2lvbj0yMDE1LTAzLTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "ARM",
+ "SDK",
+ "v1.0.12-preview"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi5231/providers/Microsoft.HDInsight/clusters/hdisdk-defaultfsdatalake1\",\r\n \"name\": \"hdisdk-defaultfsdatalake1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"67dcd361-9037-4e4f-943d-5ef5a884df3e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.7932505.json\",\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sisankar\"\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\": \"sisankar\"\r\n }\r\n }\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\": \"sisankar\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"HdInsightConfiguration\",\r\n \"createdDate\": \"2016-07-21T08:42:53.7\",\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-defaultfsdatalake1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-defaultfsdatalake1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1364"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "7f81b879-0e93-453c-b819-ac302d1ba0f3"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14903"
+ ],
+ "x-ms-correlation-request-id": [
+ "28961e00-f90c-4030-b8f2-046177ee5a38"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20160721T085316Z:28961e00-f90c-4030-b8f2-046177ee5a38"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 21 Jul 2016 08:53:15 GMT"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi5231/providers/Microsoft.HDInsight/clusters/hdisdk-defaultfsdatalake1?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Jlc291cmNlR3JvdXBzL2hkaTUyMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLWRlZmF1bHRmc2RhdGFsYWtlMT9hcGktdmVyc2lvbj0yMDE1LTAzLTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "ARM",
+ "SDK",
+ "v1.0.12-preview"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi5231/providers/Microsoft.HDInsight/clusters/hdisdk-defaultfsdatalake1\",\r\n \"name\": \"hdisdk-defaultfsdatalake1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"67dcd361-9037-4e4f-943d-5ef5a884df3e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.7932505.json\",\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sisankar\"\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\": \"sisankar\"\r\n }\r\n }\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\": \"sisankar\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"HdInsightConfiguration\",\r\n \"createdDate\": \"2016-07-21T08:42:53.7\",\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-defaultfsdatalake1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-defaultfsdatalake1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1364"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "b15d7cc2-fbf2-4788-aeb2-a4b90621ac90"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14899"
+ ],
+ "x-ms-correlation-request-id": [
+ "e5521a7c-1d2a-4209-a0d1-ff4613a2e576"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20160721T085416Z:e5521a7c-1d2a-4209-a0d1-ff4613a2e576"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 21 Jul 2016 08:54:15 GMT"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi5231/providers/Microsoft.HDInsight/clusters/hdisdk-defaultfsdatalake1?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Jlc291cmNlR3JvdXBzL2hkaTUyMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLWRlZmF1bHRmc2RhdGFsYWtlMT9hcGktdmVyc2lvbj0yMDE1LTAzLTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "ARM",
+ "SDK",
+ "v1.0.12-preview"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi5231/providers/Microsoft.HDInsight/clusters/hdisdk-defaultfsdatalake1\",\r\n \"name\": \"hdisdk-defaultfsdatalake1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"67dcd361-9037-4e4f-943d-5ef5a884df3e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.7932505.json\",\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sisankar\"\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\": \"sisankar\"\r\n }\r\n }\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\": \"sisankar\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"HdInsightConfiguration\",\r\n \"createdDate\": \"2016-07-21T08:42:53.7\",\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-defaultfsdatalake1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-defaultfsdatalake1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1364"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "e452cabb-63a4-4453-a0f0-40da38f0e082"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14901"
+ ],
+ "x-ms-correlation-request-id": [
+ "7c3735e6-2dee-4c23-b631-01aa874f700a"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20160721T085519Z:7c3735e6-2dee-4c23-b631-01aa874f700a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 21 Jul 2016 08:55:18 GMT"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi5231/providers/Microsoft.HDInsight/clusters/hdisdk-defaultfsdatalake1?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Jlc291cmNlR3JvdXBzL2hkaTUyMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLWRlZmF1bHRmc2RhdGFsYWtlMT9hcGktdmVyc2lvbj0yMDE1LTAzLTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "ARM",
+ "SDK",
+ "v1.0.12-preview"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi5231/providers/Microsoft.HDInsight/clusters/hdisdk-defaultfsdatalake1\",\r\n \"name\": \"hdisdk-defaultfsdatalake1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"67dcd361-9037-4e4f-943d-5ef5a884df3e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.7932505.json\",\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sisankar\"\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\": \"sisankar\"\r\n }\r\n }\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\": \"sisankar\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"HdInsightConfiguration\",\r\n \"createdDate\": \"2016-07-21T08:42:53.7\",\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-defaultfsdatalake1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-defaultfsdatalake1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1364"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "5c802cb6-c59b-468f-9b09-35b197fc56dc"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14897"
+ ],
+ "x-ms-correlation-request-id": [
+ "dd467458-3a75-4d34-b2d8-7c410926c6ea"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20160721T085620Z:dd467458-3a75-4d34-b2d8-7c410926c6ea"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 21 Jul 2016 08:56:19 GMT"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi5231/providers/Microsoft.HDInsight/clusters/hdisdk-defaultfsdatalake1?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Jlc291cmNlR3JvdXBzL2hkaTUyMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLWRlZmF1bHRmc2RhdGFsYWtlMT9hcGktdmVyc2lvbj0yMDE1LTAzLTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "ARM",
+ "SDK",
+ "v1.0.12-preview"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi5231/providers/Microsoft.HDInsight/clusters/hdisdk-defaultfsdatalake1\",\r\n \"name\": \"hdisdk-defaultfsdatalake1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"67dcd361-9037-4e4f-943d-5ef5a884df3e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.7932505.json\",\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sisankar\"\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\": \"sisankar\"\r\n }\r\n }\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\": \"sisankar\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"HdInsightConfiguration\",\r\n \"createdDate\": \"2016-07-21T08:42:53.7\",\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-defaultfsdatalake1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-defaultfsdatalake1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1364"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "5a6d9a67-425a-4345-b4fd-1e13f80f446c"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14894"
+ ],
+ "x-ms-correlation-request-id": [
+ "4922c9bd-7e00-40aa-ac7f-5f77505b5911"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20160721T085722Z:4922c9bd-7e00-40aa-ac7f-5f77505b5911"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 21 Jul 2016 08:57:21 GMT"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi5231/providers/Microsoft.HDInsight/clusters/hdisdk-defaultfsdatalake1?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Jlc291cmNlR3JvdXBzL2hkaTUyMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLWRlZmF1bHRmc2RhdGFsYWtlMT9hcGktdmVyc2lvbj0yMDE1LTAzLTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "ARM",
+ "SDK",
+ "v1.0.12-preview"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi5231/providers/Microsoft.HDInsight/clusters/hdisdk-defaultfsdatalake1\",\r\n \"name\": \"hdisdk-defaultfsdatalake1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"67dcd361-9037-4e4f-943d-5ef5a884df3e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.7932505.json\",\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sisankar\"\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\": \"sisankar\"\r\n }\r\n }\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\": \"sisankar\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"HdInsightConfiguration\",\r\n \"createdDate\": \"2016-07-21T08:42:53.7\",\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-defaultfsdatalake1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-defaultfsdatalake1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1364"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "9e291898-b718-4b59-bc87-3a3be144c199"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14891"
+ ],
+ "x-ms-correlation-request-id": [
+ "54c50d13-29a5-40b9-bba0-831bc2867f0f"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20160721T085824Z:54c50d13-29a5-40b9-bba0-831bc2867f0f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 21 Jul 2016 08:58:24 GMT"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi5231/providers/Microsoft.HDInsight/clusters/hdisdk-defaultfsdatalake1?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Jlc291cmNlR3JvdXBzL2hkaTUyMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLWRlZmF1bHRmc2RhdGFsYWtlMT9hcGktdmVyc2lvbj0yMDE1LTAzLTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "ARM",
+ "SDK",
+ "v1.0.12-preview"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi5231/providers/Microsoft.HDInsight/clusters/hdisdk-defaultfsdatalake1\",\r\n \"name\": \"hdisdk-defaultfsdatalake1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"67dcd361-9037-4e4f-943d-5ef5a884df3e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.7932505.json\",\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sisankar\"\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\": \"sisankar\"\r\n }\r\n }\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\": \"sisankar\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2016-07-21T08:42:53.7\",\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-defaultfsdatalake1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-defaultfsdatalake1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1348"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "35240e43-30a6-429d-af36-cf0a3605f528"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14886"
+ ],
+ "x-ms-correlation-request-id": [
+ "ea602e6b-3792-4f16-95d3-ad8eafb7ce3a"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20160721T085925Z:ea602e6b-3792-4f16-95d3-ad8eafb7ce3a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 21 Jul 2016 08:59:24 GMT"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi5231/providers/Microsoft.HDInsight/clusters/hdisdk-defaultfsdatalake1?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Jlc291cmNlR3JvdXBzL2hkaTUyMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLWRlZmF1bHRmc2RhdGFsYWtlMT9hcGktdmVyc2lvbj0yMDE1LTAzLTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "ARM",
+ "SDK",
+ "v1.0.12-preview"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi5231/providers/Microsoft.HDInsight/clusters/hdisdk-defaultfsdatalake1\",\r\n \"name\": \"hdisdk-defaultfsdatalake1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"67dcd361-9037-4e4f-943d-5ef5a884df3e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.7932505.json\",\r\n \"kind\": \"Hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sisankar\"\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\": \"sisankar\"\r\n }\r\n }\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\": \"sisankar\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2016-07-21T08:42:53.7\",\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-defaultfsdatalake1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-defaultfsdatalake1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1348"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "54683de4-0d47-48d4-b455-7b7499159d99"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14962"
+ ],
+ "x-ms-correlation-request-id": [
+ "9351a405-1bde-445c-8223-00dfa2499745"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20160721T090200Z:9351a405-1bde-445c-8223-00dfa2499745"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 21 Jul 2016 09:01:59 GMT"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/resourceGroups/hdi5231/providers/Microsoft.HDInsight/clusters/hdisdk-defaultfsdatalake1?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Jlc291cmNlR3JvdXBzL2hkaTUyMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLWRlZmF1bHRmc2RhdGFsYWtlMT9hcGktdmVyc2lvbj0yMDE1LTAzLTAxLXByZXZpZXc=",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "ARM",
+ "SDK",
+ "v1.0.12-preview"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com:443/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/providers/Microsoft.HDInsight/locations/East US/azureasyncoperations/520a669b-9fa2-4720-a895-1d8e908c4619-0?api-version=2015-03-01-preview"
+ ],
+ "x-ms-request-id": [
+ "8607fdd0-ef5d-4418-a3b3-37be4b89070a"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
+ ],
+ "x-ms-correlation-request-id": [
+ "d83a28cf-f5ee-4bb0-bd81-22a4830a4e40"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20160721T090219Z:d83a28cf-f5ee-4bb0-bd81-22a4830a4e40"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 21 Jul 2016 09:02:18 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/providers/Microsoft.HDInsight/locations/East%20US/operationresults/520a669b-9fa2-4720-a895-1d8e908c4619-0?api-version=2015-03-01-preview"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/providers/Microsoft.HDInsight/locations/East%20US/azureasyncoperations/520a669b-9fa2-4720-a895-1d8e908c4619-0?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9FYXN0JTIwVVMvYXp1cmVhc3luY29wZXJhdGlvbnMvNTIwYTY2OWItOWZhMi00NzIwLWE4OTUtMWQ4ZTkwOGM0NjE5LTA/YXBpLXZlcnNpb249MjAxNS0wMy0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "ARM",
+ "SDK",
+ "v1.0.12-preview"
+ ],
+ "x-ms-version": [
+ "2015-03-01-preview"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "f87f5812-333d-44d9-9f73-0fd0e496f4f7"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14961"
+ ],
+ "x-ms-correlation-request-id": [
+ "075fce51-19ce-4e39-b953-23f387ae349e"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20160721T090220Z:075fce51-19ce-4e39-b953-23f387ae349e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 21 Jul 2016 09:02:19 GMT"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/providers/Microsoft.HDInsight/locations/East%20US/azureasyncoperations/520a669b-9fa2-4720-a895-1d8e908c4619-0?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9FYXN0JTIwVVMvYXp1cmVhc3luY29wZXJhdGlvbnMvNTIwYTY2OWItOWZhMi00NzIwLWE4OTUtMWQ4ZTkwOGM0NjE5LTA/YXBpLXZlcnNpb249MjAxNS0wMy0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "ARM",
+ "SDK",
+ "v1.0.12-preview"
+ ],
+ "x-ms-version": [
+ "2015-03-01-preview"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "a085983d-083c-4ebd-9bdb-ee524edfcee0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14958"
+ ],
+ "x-ms-correlation-request-id": [
+ "86bf9aaf-6090-40b2-8059-086412e76e89"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20160721T090322Z:86bf9aaf-6090-40b2-8059-086412e76e89"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 21 Jul 2016 09:03:22 GMT"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/providers/Microsoft.HDInsight/locations/East%20US/azureasyncoperations/520a669b-9fa2-4720-a895-1d8e908c4619-0?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9FYXN0JTIwVVMvYXp1cmVhc3luY29wZXJhdGlvbnMvNTIwYTY2OWItOWZhMi00NzIwLWE4OTUtMWQ4ZTkwOGM0NjE5LTA/YXBpLXZlcnNpb249MjAxNS0wMy0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "ARM",
+ "SDK",
+ "v1.0.12-preview"
+ ],
+ "x-ms-version": [
+ "2015-03-01-preview"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "b977214c-d500-4d3e-9ea4-411c2b3226db"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14956"
+ ],
+ "x-ms-correlation-request-id": [
+ "117f502a-0f0c-4065-a0f2-fa23b9dd735e"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20160721T090424Z:117f502a-0f0c-4065-a0f2-fa23b9dd735e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 21 Jul 2016 09:04:23 GMT"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/providers/Microsoft.HDInsight/locations/East%20US/azureasyncoperations/520a669b-9fa2-4720-a895-1d8e908c4619-0?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9FYXN0JTIwVVMvYXp1cmVhc3luY29wZXJhdGlvbnMvNTIwYTY2OWItOWZhMi00NzIwLWE4OTUtMWQ4ZTkwOGM0NjE5LTA/YXBpLXZlcnNpb249MjAxNS0wMy0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "ARM",
+ "SDK",
+ "v1.0.12-preview"
+ ],
+ "x-ms-version": [
+ "2015-03-01-preview"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "03b980c8-02c0-4892-ae0c-b4728d374557"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14954"
+ ],
+ "x-ms-correlation-request-id": [
+ "a326fc72-b2cb-448a-8817-73ef7899b295"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20160721T090526Z:a326fc72-b2cb-448a-8817-73ef7899b295"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 21 Jul 2016 09:05:26 GMT"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/providers/Microsoft.HDInsight/locations/East%20US/azureasyncoperations/520a669b-9fa2-4720-a895-1d8e908c4619-0?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9FYXN0JTIwVVMvYXp1cmVhc3luY29wZXJhdGlvbnMvNTIwYTY2OWItOWZhMi00NzIwLWE4OTUtMWQ4ZTkwOGM0NjE5LTA/YXBpLXZlcnNpb249MjAxNS0wMy0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "ARM",
+ "SDK",
+ "v1.0.12-preview"
+ ],
+ "x-ms-version": [
+ "2015-03-01-preview"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "2971990d-8e0a-431a-bed5-eeb55bec0a83"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14950"
+ ],
+ "x-ms-correlation-request-id": [
+ "5d1dbf7f-0ea5-4c9e-bc95-c4e0934d60e4"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20160721T090627Z:5d1dbf7f-0ea5-4c9e-bc95-c4e0934d60e4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 21 Jul 2016 09:06:26 GMT"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/providers/Microsoft.HDInsight/locations/East%20US/azureasyncoperations/520a669b-9fa2-4720-a895-1d8e908c4619-0?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9FYXN0JTIwVVMvYXp1cmVhc3luY29wZXJhdGlvbnMvNTIwYTY2OWItOWZhMi00NzIwLWE4OTUtMWQ4ZTkwOGM0NjE5LTA/YXBpLXZlcnNpb249MjAxNS0wMy0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "ARM",
+ "SDK",
+ "v1.0.12-preview"
+ ],
+ "x-ms-version": [
+ "2015-03-01-preview"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "adc9612a-0d62-4f03-8745-f07a51a3afaa"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14947"
+ ],
+ "x-ms-correlation-request-id": [
+ "ed924a51-31d5-4c58-a267-8ff63dff31d8"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20160721T090729Z:ed924a51-31d5-4c58-a267-8ff63dff31d8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 21 Jul 2016 09:07:29 GMT"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/providers/Microsoft.HDInsight/locations/East%20US/azureasyncoperations/520a669b-9fa2-4720-a895-1d8e908c4619-0?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9FYXN0JTIwVVMvYXp1cmVhc3luY29wZXJhdGlvbnMvNTIwYTY2OWItOWZhMi00NzIwLWE4OTUtMWQ4ZTkwOGM0NjE5LTA/YXBpLXZlcnNpb249MjAxNS0wMy0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "ARM",
+ "SDK",
+ "v1.0.12-preview"
+ ],
+ "x-ms-version": [
+ "2015-03-01-preview"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "84f9da02-54cf-4e23-bb4d-c680f1d298a5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14946"
+ ],
+ "x-ms-correlation-request-id": [
+ "193d439a-e7c6-4065-bd8a-1bc53f252005"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20160721T090831Z:193d439a-e7c6-4065-bd8a-1bc53f252005"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 21 Jul 2016 09:08:31 GMT"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/providers/Microsoft.HDInsight/locations/East%20US/azureasyncoperations/520a669b-9fa2-4720-a895-1d8e908c4619-0?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9FYXN0JTIwVVMvYXp1cmVhc3luY29wZXJhdGlvbnMvNTIwYTY2OWItOWZhMi00NzIwLWE4OTUtMWQ4ZTkwOGM0NjE5LTA/YXBpLXZlcnNpb249MjAxNS0wMy0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "ARM",
+ "SDK",
+ "v1.0.12-preview"
+ ],
+ "x-ms-version": [
+ "2015-03-01-preview"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "7d870205-286a-4a61-a82f-49eda23319c1"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14943"
+ ],
+ "x-ms-correlation-request-id": [
+ "140ad1a8-1d86-4b4f-a556-d6249fc1da8a"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20160721T090933Z:140ad1a8-1d86-4b4f-a556-d6249fc1da8a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 21 Jul 2016 09:09:33 GMT"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/providers/Microsoft.HDInsight/locations/East%20US/azureasyncoperations/520a669b-9fa2-4720-a895-1d8e908c4619-0?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9FYXN0JTIwVVMvYXp1cmVhc3luY29wZXJhdGlvbnMvNTIwYTY2OWItOWZhMi00NzIwLWE4OTUtMWQ4ZTkwOGM0NjE5LTA/YXBpLXZlcnNpb249MjAxNS0wMy0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "ARM",
+ "SDK",
+ "v1.0.12-preview"
+ ],
+ "x-ms-version": [
+ "2015-03-01-preview"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "328ef729-bc1a-4e9f-81c7-c4fe7f0178ed"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14942"
+ ],
+ "x-ms-correlation-request-id": [
+ "3e9eecf7-9a54-4a81-8522-24ecd8e9bbac"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20160721T091035Z:3e9eecf7-9a54-4a81-8522-24ecd8e9bbac"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 21 Jul 2016 09:10:34 GMT"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/providers/Microsoft.HDInsight/locations/East%20US/azureasyncoperations/520a669b-9fa2-4720-a895-1d8e908c4619-0?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9FYXN0JTIwVVMvYXp1cmVhc3luY29wZXJhdGlvbnMvNTIwYTY2OWItOWZhMi00NzIwLWE4OTUtMWQ4ZTkwOGM0NjE5LTA/YXBpLXZlcnNpb249MjAxNS0wMy0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "ARM",
+ "SDK",
+ "v1.0.12-preview"
+ ],
+ "x-ms-version": [
+ "2015-03-01-preview"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "a885e533-bf7e-4ff1-bcf1-9201ffba8352"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14941"
+ ],
+ "x-ms-correlation-request-id": [
+ "dddd9707-7639-4fdd-aa49-d6ff561be5bc"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20160721T091137Z:dddd9707-7639-4fdd-aa49-d6ff561be5bc"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 21 Jul 2016 09:11:36 GMT"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/26d6d535-5164-443d-82f6-4c695caf7688/providers/Microsoft.HDInsight/locations/East%20US/azureasyncoperations/520a669b-9fa2-4720-a895-1d8e908c4619-0?api-version=2015-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjZkNmQ1MzUtNTE2NC00NDNkLTgyZjYtNGM2OTVjYWY3Njg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9FYXN0JTIwVVMvYXp1cmVhc3luY29wZXJhdGlvbnMvNTIwYTY2OWItOWZhMi00NzIwLWE4OTUtMWQ4ZTkwOGM0NjE5LTA/YXBpLXZlcnNpb249MjAxNS0wMy0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "ARM",
+ "SDK",
+ "v1.0.12-preview"
+ ],
+ "x-ms-version": [
+ "2015-03-01-preview"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "22"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "90862717-2f89-47c1-afd1-0d25c61b15ad"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14938"
+ ],
+ "x-ms-correlation-request-id": [
+ "0c4813f4-c19f-4bd5-a7f6-935d1c91534a"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20160721T091238Z:0c4813f4-c19f-4bd5-a7f6-935d1c91534a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 21 Jul 2016 09:12:38 GMT"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ]
+ },
+ "StatusCode": 200
+ }
+ ],
+ "Names": {
+ "CreateResourceGroup": [
+ "hdi5231"
+ ]
+ },
+ "Variables": {
+ "SubscriptionId": "26d6d535-5164-443d-82f6-4c695caf7688"
+ }
+}
\ No newline at end of file
diff --git a/src/ResourceManagement/HDInsight/HDInsight.Tests/UnitTests/ClusterCreateTests.cs b/src/ResourceManagement/HDInsight/HDInsight.Tests/UnitTests/ClusterCreateTests.cs
new file mode 100644
index 0000000000000..a3aee297ba661
--- /dev/null
+++ b/src/ResourceManagement/HDInsight/HDInsight.Tests/UnitTests/ClusterCreateTests.cs
@@ -0,0 +1,76 @@
+using Microsoft.Azure.Management.HDInsight;
+using System.Collections.Generic;
+using Xunit;
+using Microsoft.Azure.Management.HDInsight.Models;
+using Newtonsoft.Json;
+
+namespace HDInsight.Tests.UnitTests
+{
+ public class ClusterCreateTests
+ {
+ [Fact]
+ public void TestCreateDefaultFsAzureBlobClusterUsingClusterParameters()
+ {
+ string clusterName = "cluster";
+ string storageContainerName = "storageContainer";
+
+ var clusterCreateParams = new ClusterCreateParameters {
+ ClusterSizeInNodes = 3,
+ ClusterType = "Hadoop",
+ WorkerNodeSize = "Large",
+ DefaultStorageInfo = new AzureStorageInfo("storageAccountName", "storageAccountKey", storageContainerName),
+ OSType = OSType.Linux,
+ UserName = "HttpUser",
+ Password = "HttpPassword",
+ Location = "East US",
+ SshUserName = "SshUser",
+ SshPassword = "SshPassword",
+ Version = "3.2"
+ };
+
+ ClusterOperations op = new ClusterOperations(new HDInsightManagementClient());
+ var extendedParams = op.GetExtendedClusterCreateParameters(clusterName, clusterCreateParams);
+ AssertContainerMatchesNameProvided(extendedParams, storageContainerName);
+ }
+
+ [Fact]
+ public void TestCreateDefaultFsAzureBlobClusterContainerNotSpecified()
+ {
+ string clusterName = "cluster";
+
+ var clusterCreateParams = new ClusterCreateParameters
+ {
+ ClusterSizeInNodes = 3,
+ ClusterType = "Hadoop",
+ WorkerNodeSize = "Large",
+ DefaultStorageInfo = new AzureStorageInfo("storageAccountName", "storageAccountKey"),
+ OSType = OSType.Linux,
+ UserName = "HttpUser",
+ Password = "HttpPassword",
+ Location = "East US",
+ SshUserName = "SshUser",
+ SshPassword = "SshPassword",
+ Version = "3.2"
+ };
+
+ ClusterOperations op = new ClusterOperations(new HDInsightManagementClient());
+ var extendedParams = op.GetExtendedClusterCreateParameters(clusterName, clusterCreateParams);
+ AssertContainerMatchesNameProvided(extendedParams, clusterName);
+ }
+
+ private void AssertContainerMatchesNameProvided(ClusterCreateParametersExtended createParamsExtended, string name)
+ {
+ Dictionary coresiteConfig;
+ if (JsonConvert.DeserializeObject>>(createParamsExtended.Properties.ClusterDefinition.Configurations).TryGetValue("core-site", out coresiteConfig))
+ {
+ string value;
+ coresiteConfig.TryGetValue("fs.defaultFS", out value);
+ Assert.True(value.StartsWith("wasb://" + name + "@"), "Container does not match the name provided");
+ }
+ else
+ {
+ Assert.True(false, "Deserialization error");
+ }
+ }
+ }
+}
diff --git a/src/ResourceManagement/HDInsight/HDInsight.Tests/UnitTests/StorageAccountTests.cs b/src/ResourceManagement/HDInsight/HDInsight.Tests/UnitTests/StorageAccountTests.cs
new file mode 100644
index 0000000000000..2c0c4a40514f6
--- /dev/null
+++ b/src/ResourceManagement/HDInsight/HDInsight.Tests/UnitTests/StorageAccountTests.cs
@@ -0,0 +1,116 @@
+using System;
+using Microsoft.Azure.Management.HDInsight;
+using Microsoft.Azure.Management.HDInsight.Models;
+using Xunit;
+
+namespace HDInsight.Tests.UnitTests
+{
+ public class StorageAccountTests
+ {
+ [Fact]
+ public void TestAzureStorageInfo()
+ {
+ string existingStorageName = "testblob";
+ string existingStorageNameFqdn = "testblob.blob.core.windows.net";
+ string mooncakeStorageNameFqdn = "testblob.blob.core.chinacloudapi.cn";
+ string existingStorageKey = "testtest==";
+ string containerName = "testcontainer";
+ string existingStorageNameFqdnUri = string.Format("wasb://{0}@{1}", containerName, existingStorageNameFqdn);
+
+ // Test for optional storageContainer
+ var testStorageInfoOptionalContainer = new AzureStorageInfo(existingStorageNameFqdn, existingStorageKey);
+ Assert.Equal(testStorageInfoOptionalContainer.StorageContainer, "");
+
+ var testStorageInfoContainer = new AzureStorageInfo(existingStorageNameFqdn, existingStorageKey, containerName);
+ Assert.Equal(testStorageInfoContainer.StorageContainer, containerName);
+
+ // Test storageAccountName is null
+ TestAndAssert(() =>
+ { return new AzureStorageInfo("", existingStorageKey, containerName); },
+ GetErrorMessage(Constants.ERROR_INPUT_CANNOT_BE_EMPTY, "storageAccountName")
+ );
+
+ // Test storageAccountKey is null
+ TestAndAssert(() =>
+ { return new AzureStorageInfo(existingStorageNameFqdn, "", containerName); },
+ GetErrorMessage(Constants.ERROR_INPUT_CANNOT_BE_EMPTY, "storageAccountKey")
+ );
+
+ // Test non-fully-qualified storageAccountName
+ var testStorageAccountShortName = new AzureStorageInfo(existingStorageName, existingStorageKey);
+ Assert.Equal(testStorageAccountShortName.StorageAccountName, existingStorageNameFqdn);
+
+ // Test fully-qualified storageAccountName
+ var testStorageAccountFullyQualifiedName = new AzureStorageInfo(existingStorageNameFqdn, existingStorageKey);
+ Assert.Equal(testStorageAccountFullyQualifiedName.StorageAccountName, existingStorageNameFqdn);
+
+ // Test fully-qualified-mooncake storageAccountName
+ var testStorageAccountMooncakeFullyQualifiedName = new AzureStorageInfo(mooncakeStorageNameFqdn, existingStorageKey);
+ Assert.Equal(testStorageAccountMooncakeFullyQualifiedName.StorageAccountName, mooncakeStorageNameFqdn);
+
+ // Test storageAccountName with url input
+ TestAndAssert(() =>
+ { return new AzureStorageInfo(existingStorageNameFqdnUri, existingStorageKey); },
+ GetErrorMessage(Constants.ERROR_SCHEME_SPECIFIED_IN_STORAGE_FQDN, "storageAccountName")
+ );
+
+ // Test for StorageAccountUri
+ var testWasbStorageInfo = new AzureStorageInfo(existingStorageNameFqdn, existingStorageKey, containerName);
+ Assert.Equal(existingStorageNameFqdnUri, testWasbStorageInfo.StorageAccountUri);
+ }
+
+ [Fact]
+ public void TestDatalakeStorageInfo()
+ {
+ string existingDatalakeStorageShortName = "test";
+ string existingDatalakeStorageNameFqdn = "test.azuredatalakestore.net";
+ string existingDatalakeStorageNameFqdnUri = "adl://" + existingDatalakeStorageNameFqdn;
+
+ // Test Datalake null/empty storageAccount name
+ TestAndAssert(() =>
+ { return new AzureDataLakeStoreInfo("", "/"); },
+ GetErrorMessage(Constants.ERROR_INPUT_CANNOT_BE_EMPTY, "storageAccountName")
+ );
+
+ // Test Datalake storageAccount shortname
+ var datalakeShortName = new AzureDataLakeStoreInfo(existingDatalakeStorageShortName, "/");
+ Assert.Equal(datalakeShortName.StorageAccountName, existingDatalakeStorageNameFqdn);
+
+ // Test Datalake storageAccount FullyQualifiedName
+ var datalakeFullName = new AzureDataLakeStoreInfo(existingDatalakeStorageNameFqdn, "/");
+ Assert.Equal(datalakeFullName.StorageAccountName, existingDatalakeStorageNameFqdn);
+
+ // Test Datalake storageAccount with url input
+ TestAndAssert(
+ () => { return new AzureDataLakeStoreInfo(existingDatalakeStorageNameFqdnUri, "/"); },
+ GetErrorMessage(Constants.ERROR_SCHEME_SPECIFIED_IN_STORAGE_FQDN, "storageAccountName")
+ );
+
+ // Test Datalake null/empty storageRootPath
+ TestAndAssert(
+ () => { return new AzureDataLakeStoreInfo(existingDatalakeStorageShortName, ""); },
+ GetErrorMessage(Constants.ERROR_INPUT_CANNOT_BE_EMPTY, "storageRootPath")
+ );
+ }
+
+ private void TestAndAssert(Func func, string msg)
+ {
+ try
+ {
+ func();
+ }
+ catch (Exception e)
+ {
+ Assert.Equal(e.Message, msg);
+ return;
+ }
+
+ Assert.True(false, "Should not come here");
+ }
+
+ private string GetErrorMessage(string errorCode, string parameterName)
+ {
+ return string.Format("{0}\r\nParameter name: {1}", errorCode, parameterName);
+ }
+ }
+}
diff --git a/src/ResourceManagement/HDInsight/HDInsight/CustomizationModels/AzureDataLakeStoreInfo.cs b/src/ResourceManagement/HDInsight/HDInsight/CustomizationModels/AzureDataLakeStoreInfo.cs
new file mode 100644
index 0000000000000..9296426c25e14
--- /dev/null
+++ b/src/ResourceManagement/HDInsight/HDInsight/CustomizationModels/AzureDataLakeStoreInfo.cs
@@ -0,0 +1,40 @@
+using System;
+using System.IO;
+using System.Linq;
+
+namespace Microsoft.Azure.Management.HDInsight.Models
+{
+ ///
+ /// Gets or sets the StorageAccountName for Azure Data Lake Storage Account.
+ ///
+ public class AzureDataLakeStoreInfo : StorageInfo
+ {
+ private static string _defaultDataLakeStorageSuffix = ".azuredatalakestore.net";
+
+ ///
+ /// Gets or Sets the absolute path of the root of the cluster. Eg: "/Clusters/mycluster"
+ ///
+ public string StorageRootPath { get; private set; }
+
+ ///
+ /// Initializes a new instance of the AzureDataLakeStoreInfo class.
+ ///
+ /// Fully Qualified StorageAccountName for the Azure Data Lake Storage Account.
+ /// The absolute path of the root of the cluster. Eg: "/Clusters/mycluster"
+ public AzureDataLakeStoreInfo(string storageAccountName, string storageRootPath)
+ : base(storageAccountName)
+ {
+ if(string.IsNullOrWhiteSpace(storageRootPath))
+ {
+ throw new ArgumentException(Constants.ERROR_INPUT_CANNOT_BE_EMPTY, "storageRootPath");
+ }
+
+ if (!storageAccountName.Contains("."))
+ {
+ this.StorageAccountName = storageAccountName + _defaultDataLakeStorageSuffix;
+ }
+
+ this.StorageRootPath = storageRootPath;
+ }
+ }
+}
diff --git a/src/ResourceManagement/HDInsight/HDInsight/CustomizationModels/AzureStorageInfo.cs b/src/ResourceManagement/HDInsight/HDInsight/CustomizationModels/AzureStorageInfo.cs
new file mode 100644
index 0000000000000..6430fe33203b1
--- /dev/null
+++ b/src/ResourceManagement/HDInsight/HDInsight/CustomizationModels/AzureStorageInfo.cs
@@ -0,0 +1,65 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Microsoft.Azure.Management.HDInsight.Models
+{
+ ///
+ /// Gets or sets the StorageAccountName, StorageAccountKey and StorageContainer for the Azure Blob Storage Account.
+ ///
+ public class AzureStorageInfo : StorageInfo
+ {
+ private readonly string _storageContainer;
+ private readonly string _storageAccountKey;
+ private static string _defaultAzureStorageSuffix = ".blob.core.windows.net";
+
+ ///
+ /// Gets Azure Blob Storage Container.
+ ///
+ public string StorageContainer
+ {
+ get { return _storageContainer; }
+ }
+
+ ///
+ /// Gets Azure Blob Storage Account Key.
+ ///
+ public string StorageAccountKey
+ {
+ get { return _storageAccountKey; }
+ }
+
+ ///
+ /// Initializes a new instance of the AzureStorageInfo class.
+ ///
+ /// Fully Qualified StorageAccountName for the Azure Blob Storage Account.
+ /// StorageKey for the Azure Blob Storage Account.
+ /// StorageContainer for the Azure Blob Storage Account. The cluster will leverage to store some cluster level files.
+ public AzureStorageInfo(string storageAccountName, string storageAccountKey, string storageContainer="")
+ : base(storageAccountName)
+ {
+ if (string.IsNullOrWhiteSpace(storageAccountKey))
+ {
+ throw new ArgumentException(Constants.ERROR_INPUT_CANNOT_BE_EMPTY, "storageAccountKey");
+ }
+
+ if (!storageAccountName.Contains("."))
+ {
+ this.StorageAccountName = storageAccountName + _defaultAzureStorageSuffix;
+ }
+
+ this._storageAccountKey = storageAccountKey;
+ this._storageContainer = storageContainer;
+ }
+
+ public string StorageAccountUri
+ {
+ get
+ {
+ return string.Format("wasb://{0}@{1}", StorageContainer, StorageAccountName);
+ }
+ }
+ }
+}
diff --git a/src/ResourceManagement/HDInsight/HDInsight/CustomizationModels/ClusterCreateParameters.cs b/src/ResourceManagement/HDInsight/HDInsight/CustomizationModels/ClusterCreateParameters.cs
index f2286d5f6876a..268b802c0ce71 100644
--- a/src/ResourceManagement/HDInsight/HDInsight/CustomizationModels/ClusterCreateParameters.cs
+++ b/src/ResourceManagement/HDInsight/HDInsight/CustomizationModels/ClusterCreateParameters.cs
@@ -32,6 +32,7 @@ public partial class ClusterCreateParameters
/// This account will be used for schemaless paths and the cluster will
/// leverage to store some cluster level files.
///
+ [ObsoleteAttribute("This property is deprecated. Please use AzureStorageInfo with the DefaultStorageInfo parameter instead.", true)]
public string DefaultStorageAccountName { get; set; }
///
@@ -39,6 +40,7 @@ public partial class ClusterCreateParameters
/// This account will be used for schemaless paths and the cluster will
/// leverage to store some cluster level files.
///
+ [ObsoleteAttribute("This property is deprecated. Please use AzureStorageInfo with the DefaultStorageInfo parameter instead.", true)]
public string DefaultStorageAccountKey { get; set; }
///
@@ -46,6 +48,7 @@ public partial class ClusterCreateParameters
/// This account will be used for schemaless paths and the cluster will
/// leverage to store some cluster level files.
///
+ [ObsoleteAttribute("This property is deprecated. Please use AzureStorageInfo with the DefaultStorageInfo parameter instead.", true)]
public string DefaultStorageContainer { get; set; }
///
@@ -108,7 +111,7 @@ public partial class ClusterCreateParameters
public string ZookeeperNodeSize { get; set; }
///
- /// Gets additional Azure Storage Account that you want to enable access to.
+ /// Gets additional Azure Blob Storage Account that you want to enable access to.
///
public Dictionary AdditionalStorageAccounts { get; private set; }
@@ -187,6 +190,13 @@ public partial class ClusterCreateParameters
///
public Dictionary ComponentVersion { get; set; }
+ ///
+ /// The information for default storage account for the cluster.
+ /// This account will be used for schemaless paths and the cluster will
+ /// leverage to store some cluster level files.
+ ///
+ public StorageInfo DefaultStorageInfo { get; set; }
+
///
/// Initializes a new instance of the ClusterCreateParameters class.
///
diff --git a/src/ResourceManagement/HDInsight/HDInsight/CustomizationModels/Constants.cs b/src/ResourceManagement/HDInsight/HDInsight/CustomizationModels/Constants.cs
new file mode 100644
index 0000000000000..d3dd3995c8b90
--- /dev/null
+++ b/src/ResourceManagement/HDInsight/HDInsight/CustomizationModels/Constants.cs
@@ -0,0 +1,14 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Microsoft.Azure.Management.HDInsight.Models
+{
+ internal static class Constants
+ {
+ internal static string ERROR_INPUT_CANNOT_BE_EMPTY = "Input cannot be empty";
+ internal static string ERROR_SCHEME_SPECIFIED_IN_STORAGE_FQDN = "Please specify fully qualified storage endpoint without the scheme";
+ }
+}
diff --git a/src/ResourceManagement/HDInsight/HDInsight/CustomizationModels/StorageInfo.cs b/src/ResourceManagement/HDInsight/HDInsight/CustomizationModels/StorageInfo.cs
new file mode 100644
index 0000000000000..e36a5b7a8bfca
--- /dev/null
+++ b/src/ResourceManagement/HDInsight/HDInsight/CustomizationModels/StorageInfo.cs
@@ -0,0 +1,34 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Microsoft.Azure.Management.HDInsight.Models
+{
+ ///
+ /// Contains cluster storage information.
+ ///
+ public abstract class StorageInfo
+ {
+ ///
+ /// Fully-qualified storage account name
+ ///
+ public string StorageAccountName { get; protected set; }
+
+ public StorageInfo(string storageAccountName)
+ {
+ if (string.IsNullOrWhiteSpace(storageAccountName))
+ {
+ throw new ArgumentException(Constants.ERROR_INPUT_CANNOT_BE_EMPTY, "storageAccountName");
+ }
+
+ if (storageAccountName.Contains("://"))
+ {
+ throw new ArgumentException(Constants.ERROR_SCHEME_SPECIFIED_IN_STORAGE_FQDN, "storageAccountName");
+ }
+
+ this.StorageAccountName = storageAccountName;
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/ResourceManagement/HDInsight/HDInsight/Customizations/ClusterOperations.Create.Customizations.cs b/src/ResourceManagement/HDInsight/HDInsight/Customizations/ClusterOperations.Create.Customizations.cs
index 51ed46cc31ebb..a3524f7d1a8cc 100644
--- a/src/ResourceManagement/HDInsight/HDInsight/Customizations/ClusterOperations.Create.Customizations.cs
+++ b/src/ResourceManagement/HDInsight/HDInsight/Customizations/ClusterOperations.Create.Customizations.cs
@@ -26,6 +26,8 @@ namespace Microsoft.Azure.Management.HDInsight
{
internal partial class ClusterOperations : IClusterOperations
{
+ private static string _wasbStorageAccountKeyFormat = "fs.azure.account.key.{0}";
+
///
/// Creates a new HDInsight cluster with the specified parameters.
///
@@ -89,7 +91,7 @@ public async Task BeginCreatingAsync(string resourceGroup
}
}
- private ClusterCreateParametersExtended GetExtendedClusterCreateParameters(
+ internal ClusterCreateParametersExtended GetExtendedClusterCreateParameters(
string clusterName, ClusterCreateParameters clusterCreateParameters)
{
var createParamsExtended = new ClusterCreateParametersExtended
@@ -257,36 +259,12 @@ private static Dictionary> GetConfigurations(
coreConfig = new Dictionary();
}
- if (!coreConfig.ContainsKey("fs.defaultFS"))
- {
- var storageAccountNameKey = "fs.defaultFS";
- if (clusterCreateParameters.Version != null && clusterCreateParameters.Version.Equals("2.1"))
- {
- storageAccountNameKey = "fs.default.name";
- }
+ AddDefaultStorageAccountToCoreConfig(clusterName, clusterCreateParameters, coreConfig);
- var container = !string.IsNullOrEmpty(clusterCreateParameters.DefaultStorageContainer)
- ? clusterCreateParameters.DefaultStorageContainer
- : clusterName;
- coreConfig.Add(storageAccountNameKey,
- string.Format("wasb://{0}@{1}", container, clusterCreateParameters.DefaultStorageAccountName));
- }
+ AddWasbStorageAccountKeyToCoreConfig(clusterCreateParameters, coreConfig);
- var defaultStorageConfigKey = string.Format("fs.azure.account.key.{0}",
- clusterCreateParameters.DefaultStorageAccountName);
- if (!coreConfig.ContainsKey(defaultStorageConfigKey))
- {
- coreConfig.Add(defaultStorageConfigKey, clusterCreateParameters.DefaultStorageAccountKey);
- }
+ AddAdditionalStorageAcountsToCoreConfig(clusterCreateParameters, coreConfig);
- foreach (var storageAccount in clusterCreateParameters.AdditionalStorageAccounts)
- {
- var configKey = string.Format("fs.azure.account.key.{0}", storageAccount.Key);
- if (!coreConfig.ContainsKey(configKey))
- {
- coreConfig.Add(configKey, storageAccount.Value);
- }
- }
if (!coreConfigExists)
{
configurations.Add(ConfigurationKey.CoreSite, coreConfig);
@@ -350,10 +328,70 @@ private static Dictionary> GetConfigurations(
configurations[ConfigurationKey.ClusterIdentity] = datalakeConfig;
}
}
-
return configurations;
}
+ private static void AddAdditionalStorageAcountsToCoreConfig(ClusterCreateParameters clusterCreateParameters, Dictionary coreConfig)
+ {
+ foreach (var storageAccount in clusterCreateParameters.AdditionalStorageAccounts)
+ {
+ var configKey = string.Format(_wasbStorageAccountKeyFormat, storageAccount.Key);
+ if (!string.IsNullOrEmpty(storageAccount.Value) && !coreConfig.ContainsKey(configKey))
+ {
+ coreConfig.Add(configKey, storageAccount.Value);
+ }
+ }
+ }
+
+ private static void AddWasbStorageAccountKeyToCoreConfig(ClusterCreateParameters clusterCreateParameters, Dictionary coreConfig)
+ {
+ var storageAccountInfo = clusterCreateParameters.DefaultStorageInfo as AzureStorageInfo;
+ if (storageAccountInfo != null)
+ {
+ string defaultStorageConfigKey = string.Format(_wasbStorageAccountKeyFormat, clusterCreateParameters.DefaultStorageInfo.StorageAccountName);
+ string storageAccountKey = storageAccountInfo.StorageAccountKey;
+
+ if (!string.IsNullOrEmpty(storageAccountKey) && !coreConfig.ContainsKey(defaultStorageConfigKey))
+ {
+ coreConfig.Add(defaultStorageConfigKey, storageAccountKey);
+ }
+ }
+ }
+
+ private static void AddDefaultStorageAccountToCoreConfig(string clusterName, ClusterCreateParameters clusterCreateParameters, Dictionary coreConfig)
+ {
+ string coreConfigDefaultFSKey = "fs.defaultFS";
+ string coreConfigDefaultFSKeyFor_2_1_Clusters = "fs.default.name";
+
+ var defaultStorageAccountKey = (clusterCreateParameters.Version != null && clusterCreateParameters.Version.Equals("2.1"))
+ ? coreConfigDefaultFSKeyFor_2_1_Clusters
+ : coreConfigDefaultFSKey;
+
+ var azureStorageAccountInfo = clusterCreateParameters.DefaultStorageInfo as AzureStorageInfo;
+ var azureDataLakeStorageInfo = clusterCreateParameters.DefaultStorageInfo as AzureDataLakeStoreInfo;
+
+ if(azureStorageAccountInfo != null)
+ {
+ if (string.IsNullOrWhiteSpace(azureStorageAccountInfo.StorageContainer))
+ {
+ var storageInfoWithContainerName = new AzureStorageInfo(azureStorageAccountInfo.StorageAccountName, azureStorageAccountInfo.StorageAccountKey, clusterName);
+ clusterCreateParameters.DefaultStorageInfo = storageInfoWithContainerName;
+ coreConfig[defaultStorageAccountKey] = storageInfoWithContainerName.StorageAccountUri;
+ }
+ else
+ {
+ coreConfig[defaultStorageAccountKey] = azureStorageAccountInfo.StorageAccountUri;
+ }
+ }
+ else if (azureDataLakeStorageInfo != null)
+ {
+ // setup the parameters required for DataLake containers
+ coreConfig[defaultStorageAccountKey] = "adl://home";
+ coreConfig["dfs.adls.home.hostname"] = azureDataLakeStorageInfo.StorageAccountName;
+ coreConfig["dfs.adls.home.mountpoint"] = azureDataLakeStorageInfo.StorageRootPath;
+ }
+ }
+
private static IEnumerable GetRoleCollection(ClusterCreateParameters clusterCreateParameters)
{
//OS Profile
diff --git a/src/ResourceManagement/HDInsight/HDInsight/Generated/ClusterOperations.cs b/src/ResourceManagement/HDInsight/HDInsight/Generated/ClusterOperations.cs
index 969d38db65694..56076730a9ab5 100644
--- a/src/ResourceManagement/HDInsight/HDInsight/Generated/ClusterOperations.cs
+++ b/src/ResourceManagement/HDInsight/HDInsight/Generated/ClusterOperations.cs
@@ -43,6 +43,8 @@ namespace Microsoft.Azure.Management.HDInsight
///
internal partial class ClusterOperations : IServiceOperations, IClusterOperations
{
+ private const string _userAgentString = "ARM SDK v2.0.0";
+
///
/// Initializes a new instance of the ClusterOperations class.
///
@@ -154,7 +156,7 @@ public async Task BeginConfiguringHttpSettingsAsync(
httpRequest.RequestUri = new Uri(url);
// Set Headers
- httpRequest.Headers.Add("User-Agent", "ARM SDK v1.3.0");
+ httpRequest.Headers.Add("User-Agent", _userAgentString);
// Set Credentials
cancellationToken.ThrowIfCancellationRequested();
@@ -345,7 +347,7 @@ public async Task BeginConfiguringRdpSettingsAsync(s
httpRequest.RequestUri = new Uri(url);
// Set Headers
- httpRequest.Headers.Add("User-Agent", "ARM SDK v1.3.0");
+ httpRequest.Headers.Add("User-Agent", _userAgentString);
// Set Credentials
cancellationToken.ThrowIfCancellationRequested();
@@ -618,7 +620,7 @@ public async Task BeginCreatingAsync(string resourceGroup
httpRequest.RequestUri = new Uri(url);
// Set Headers
- httpRequest.Headers.Add("User-Agent", "ARM SDK v1.3.0");
+ httpRequest.Headers.Add("User-Agent", _userAgentString);
// Set Credentials
cancellationToken.ThrowIfCancellationRequested();
@@ -1519,7 +1521,7 @@ public async Task BeginDeletingAsync(string resource
httpRequest.RequestUri = new Uri(url);
// Set Headers
- httpRequest.Headers.Add("User-Agent", "ARM SDK v1.3.0");
+ httpRequest.Headers.Add("User-Agent", _userAgentString);
// Set Credentials
cancellationToken.ThrowIfCancellationRequested();
@@ -1914,7 +1916,7 @@ public async Task BeginResizingAsync(string resource
httpRequest.RequestUri = new Uri(url);
// Set Headers
- httpRequest.Headers.Add("User-Agent", "ARM SDK v1.3.0");
+ httpRequest.Headers.Add("User-Agent", _userAgentString);
// Set Credentials
cancellationToken.ThrowIfCancellationRequested();
@@ -2546,7 +2548,7 @@ public async Task GetAsync(string resourceGroupName, string
httpRequest.RequestUri = new Uri(url);
// Set Headers
- httpRequest.Headers.Add("User-Agent", "ARM SDK v1.3.0");
+ httpRequest.Headers.Add("User-Agent", _userAgentString);
// Set Credentials
cancellationToken.ThrowIfCancellationRequested();
@@ -3153,7 +3155,7 @@ public async Task GetCapabilitiesAsync(string location, Ca
httpRequest.RequestUri = new Uri(url);
// Set Headers
- httpRequest.Headers.Add("User-Agent", "ARM SDK v1.3.0");
+ httpRequest.Headers.Add("User-Agent", _userAgentString);
// Set Credentials
cancellationToken.ThrowIfCancellationRequested();
@@ -3527,7 +3529,7 @@ public async Task GetClusterConfigurationsAsync(s
httpRequest.RequestUri = new Uri(url);
// Set Headers
- httpRequest.Headers.Add("User-Agent", "ARM SDK v1.3.0");
+ httpRequest.Headers.Add("User-Agent", _userAgentString);
// Set Credentials
cancellationToken.ThrowIfCancellationRequested();
@@ -3698,7 +3700,7 @@ public async Task GetConnectivitySettingsAsync(string
httpRequest.RequestUri = new Uri(url);
// Set Headers
- httpRequest.Headers.Add("User-Agent", "ARM SDK v1.3.0");
+ httpRequest.Headers.Add("User-Agent", _userAgentString);
// Set Credentials
cancellationToken.ThrowIfCancellationRequested();
@@ -3843,7 +3845,7 @@ public async Task GetCreateStatusAsync(string operationStatu
httpRequest.RequestUri = new Uri(url);
// Set Headers
- httpRequest.Headers.Add("User-Agent", "ARM SDK v1.3.0");
+ httpRequest.Headers.Add("User-Agent", _userAgentString);
// Set Credentials
cancellationToken.ThrowIfCancellationRequested();
@@ -4424,7 +4426,7 @@ public async Task GetDeleteStatusAsync(string operationStatus
httpRequest.RequestUri = new Uri(url);
// Set Headers
- httpRequest.Headers.Add("User-Agent", "ARM SDK v1.3.0");
+ httpRequest.Headers.Add("User-Agent", _userAgentString);
httpRequest.Headers.Add("x-ms-version", "2015-03-01-preview");
// Set Credentials
@@ -4863,7 +4865,7 @@ public async Task ListAsync(CancellationToken cancellationT
httpRequest.RequestUri = new Uri(url);
// Set Headers
- httpRequest.Headers.Add("User-Agent", "ARM SDK v1.3.0");
+ httpRequest.Headers.Add("User-Agent", _userAgentString);
// Set Credentials
cancellationToken.ThrowIfCancellationRequested();
@@ -5477,7 +5479,7 @@ public async Task ListByResourceGroupAsync(string resourceG
httpRequest.RequestUri = new Uri(url);
// Set Headers
- httpRequest.Headers.Add("User-Agent", "ARM SDK v1.3.0");
+ httpRequest.Headers.Add("User-Agent", _userAgentString);
// Set Credentials
cancellationToken.ThrowIfCancellationRequested();
diff --git a/src/ResourceManagement/HDInsight/HDInsight/HDInsightManagement.csproj b/src/ResourceManagement/HDInsight/HDInsight/HDInsightManagement.csproj
index b70682661dab9..fe9525d0dbbf6 100644
--- a/src/ResourceManagement/HDInsight/HDInsight/HDInsightManagement.csproj
+++ b/src/ResourceManagement/HDInsight/HDInsight/HDInsightManagement.csproj
@@ -21,11 +21,15 @@
+
+
+
+
diff --git a/src/ResourceManagement/HDInsight/HDInsight/Microsoft.Azure.Management.HDInsight.nuget.proj b/src/ResourceManagement/HDInsight/HDInsight/Microsoft.Azure.Management.HDInsight.nuget.proj
index 7532e31f514be..59627a22b70e5 100644
--- a/src/ResourceManagement/HDInsight/HDInsight/Microsoft.Azure.Management.HDInsight.nuget.proj
+++ b/src/ResourceManagement/HDInsight/HDInsight/Microsoft.Azure.Management.HDInsight.nuget.proj
@@ -2,7 +2,7 @@
- 1.3.1
+ 2.0.0
$(MSBuildThisFileDirectory)
diff --git a/src/ResourceManagement/HDInsight/HDInsight/Properties/AssemblyInfo.cs b/src/ResourceManagement/HDInsight/HDInsight/Properties/AssemblyInfo.cs
index 7d694f0c32d26..b2c034e3fbb11 100644
--- a/src/ResourceManagement/HDInsight/HDInsight/Properties/AssemblyInfo.cs
+++ b/src/ResourceManagement/HDInsight/HDInsight/Properties/AssemblyInfo.cs
@@ -32,8 +32,8 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
-[assembly: AssemblyVersion("1.0.0.0")]
-[assembly: AssemblyFileVersion("1.3.1.0")]
+[assembly: AssemblyVersion("2.0.0.0")]
+[assembly: AssemblyFileVersion("2.0.0.0")]
#if CODESIGN
[assembly:InternalsVisibleTo("HDInsight.Tests, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9")]