From b6228f4d7deb9f5042ace2b836f3da48c23046b8 Mon Sep 17 00:00:00 2001 From: Bala Ganapathy Date: Thu, 25 Aug 2016 15:44:42 -0700 Subject: [PATCH 01/10] changes for provisioningstate enum -> string + allowing statuscode 202 for PUT manifest call --- .../ResourceProviderManifest.cs | 2 +- .../AzureStackManagement/AzureStackManagement.csproj | 4 +++- .../Generated/Models/ManifestPropertiesDefinition.cs | 4 ++-- .../Generated/ProviderRegistrationOperations.cs | 12 ++++++------ 4 files changed, 12 insertions(+), 10 deletions(-) diff --git a/src/ResourceManagement/AzureStackAdmin/AzureStackAdmin.Tests/ResourceProviderManifest.cs b/src/ResourceManagement/AzureStackAdmin/AzureStackAdmin.Tests/ResourceProviderManifest.cs index 97928d9b369d1..9ae9b4f9df836 100644 --- a/src/ResourceManagement/AzureStackAdmin/AzureStackAdmin.Tests/ResourceProviderManifest.cs +++ b/src/ResourceManagement/AzureStackAdmin/AzureStackAdmin.Tests/ResourceProviderManifest.cs @@ -185,7 +185,7 @@ public void CreateOrUpdateResourceProviderManifest() } }, - ProvisioningState = ProvisioningState.Succeeded + ProvisioningState = "Succeeded" } } )); diff --git a/src/ResourceManagement/AzureStackAdmin/AzureStackManagement/AzureStackManagement.csproj b/src/ResourceManagement/AzureStackAdmin/AzureStackManagement/AzureStackManagement.csproj index e533bbfad83bd..652126062efaf 100644 --- a/src/ResourceManagement/AzureStackAdmin/AzureStackManagement/AzureStackManagement.csproj +++ b/src/ResourceManagement/AzureStackAdmin/AzureStackManagement/AzureStackManagement.csproj @@ -27,7 +27,9 @@ - + + Designer + Designer diff --git a/src/ResourceManagement/AzureStackAdmin/AzureStackManagement/Generated/Models/ManifestPropertiesDefinition.cs b/src/ResourceManagement/AzureStackAdmin/AzureStackManagement/Generated/Models/ManifestPropertiesDefinition.cs index 47b646c77b583..cee6f1f3e8e2e 100644 --- a/src/ResourceManagement/AzureStackAdmin/AzureStackManagement/Generated/Models/ManifestPropertiesDefinition.cs +++ b/src/ResourceManagement/AzureStackAdmin/AzureStackManagement/Generated/Models/ManifestPropertiesDefinition.cs @@ -134,12 +134,12 @@ public string ProviderLocation set { this._providerLocation = value; } } - private Microsoft.AzureStack.Management.Models.ProvisioningState? _provisioningState; + private string _provisioningState; /// /// Optional. Gets or sets the provisioning state. /// - public Microsoft.AzureStack.Management.Models.ProvisioningState? ProvisioningState + public string ProvisioningState { get { return this._provisioningState; } set { this._provisioningState = value; } diff --git a/src/ResourceManagement/AzureStackAdmin/AzureStackManagement/Generated/ProviderRegistrationOperations.cs b/src/ResourceManagement/AzureStackAdmin/AzureStackManagement/Generated/ProviderRegistrationOperations.cs index 5f5d21c2fb68c..d20d2724c98ab 100644 --- a/src/ResourceManagement/AzureStackAdmin/AzureStackManagement/Generated/ProviderRegistrationOperations.cs +++ b/src/ResourceManagement/AzureStackAdmin/AzureStackManagement/Generated/ProviderRegistrationOperations.cs @@ -402,7 +402,7 @@ public async Task CreateOrUpdateAsync( if (parameters.ProviderRegistration.Properties.ProvisioningState != null) { - propertiesValue["ProvisioningState"] = parameters.ProviderRegistration.Properties.ProvisioningState.Value.ToString(); + propertiesValue["ProvisioningState"] = parameters.ProviderRegistration.Properties.ProvisioningState; } } @@ -457,7 +457,7 @@ public async Task CreateOrUpdateAsync( TracingAdapter.ReceiveResponse(invocationId, httpResponse); } HttpStatusCode statusCode = httpResponse.StatusCode; - if (statusCode != HttpStatusCode.OK && statusCode != HttpStatusCode.Created) + if (statusCode != HttpStatusCode.OK && statusCode != HttpStatusCode.Created && statusCode != HttpStatusCode.Accepted) { cancellationToken.ThrowIfCancellationRequested(); CloudException ex = CloudException.Create(httpRequest, requestContent, httpResponse, await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false)); @@ -471,7 +471,7 @@ public async Task CreateOrUpdateAsync( // Create Result ProviderRegistrationCreateOrUpdateResult result = null; // Deserialize Response - if (statusCode == HttpStatusCode.OK || statusCode == HttpStatusCode.Created) + if (statusCode == HttpStatusCode.OK || statusCode == HttpStatusCode.Created || statusCode == HttpStatusCode.Accepted) { cancellationToken.ThrowIfCancellationRequested(); string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); @@ -758,7 +758,7 @@ public async Task CreateOrUpdateAsync( JToken provisioningStateValue = propertiesValue2["ProvisioningState"]; if (provisioningStateValue != null && provisioningStateValue.Type != JTokenType.Null) { - ProvisioningState provisioningStateInstance = ((ProvisioningState)Enum.Parse(typeof(ProvisioningState), ((string)provisioningStateValue), true)); + string provisioningStateInstance = ((string)provisioningStateValue); propertiesInstance.ProvisioningState = provisioningStateInstance; } } @@ -1384,7 +1384,7 @@ public async Task GetAsync(string resourceGroupNa JToken provisioningStateValue = propertiesValue["ProvisioningState"]; if (provisioningStateValue != null && provisioningStateValue.Type != JTokenType.Null) { - ProvisioningState provisioningStateInstance = ((ProvisioningState)Enum.Parse(typeof(ProvisioningState), ((string)provisioningStateValue), true)); + string provisioningStateInstance = ((string)provisioningStateValue); propertiesInstance.ProvisioningState = provisioningStateInstance; } } @@ -1858,7 +1858,7 @@ public async Task ListAsync(string resourceGroup JToken provisioningStateValue = propertiesValue["ProvisioningState"]; if (provisioningStateValue != null && provisioningStateValue.Type != JTokenType.Null) { - ProvisioningState provisioningStateInstance = ((ProvisioningState)Enum.Parse(typeof(ProvisioningState), ((string)provisioningStateValue), true)); + string provisioningStateInstance = ((string)provisioningStateValue); propertiesInstance.ProvisioningState = provisioningStateInstance; } } From bad3e7e390e0fca9ff524258864d2227907cd432 Mon Sep 17 00:00:00 2001 From: Bala Ganapathy Date: Thu, 25 Aug 2016 15:47:00 -0700 Subject: [PATCH 02/10] changing the version and nuget package to be 0.10.1.0 --- .../Microsoft.AzureStack.Management.nuget.proj | 2 +- .../AzureStackManagement/Properties/AssemblyInfo.cs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ResourceManagement/AzureStackAdmin/AzureStackManagement/Microsoft.AzureStack.Management.nuget.proj b/src/ResourceManagement/AzureStackAdmin/AzureStackManagement/Microsoft.AzureStack.Management.nuget.proj index 70893f978a19e..9da19ab973c46 100644 --- a/src/ResourceManagement/AzureStackAdmin/AzureStackManagement/Microsoft.AzureStack.Management.nuget.proj +++ b/src/ResourceManagement/AzureStackAdmin/AzureStackManagement/Microsoft.AzureStack.Management.nuget.proj @@ -5,7 +5,7 @@ Microsoft.AzureStack.Management --> - 0.9.6-preview + 0.10.1-preview $(MSBuildThisFileDirectory) diff --git a/src/ResourceManagement/AzureStackAdmin/AzureStackManagement/Properties/AssemblyInfo.cs b/src/ResourceManagement/AzureStackAdmin/AzureStackManagement/Properties/AssemblyInfo.cs index bb04e02f99246..9cf5341a0d9b4 100644 --- a/src/ResourceManagement/AzureStackAdmin/AzureStackManagement/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/AzureStackAdmin/AzureStackManagement/Properties/AssemblyInfo.cs @@ -24,5 +24,5 @@ [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] [assembly: NeutralResourcesLanguage("en")] -[assembly: AssemblyVersion("0.9.0.0")] -[assembly: AssemblyFileVersion("0.9.6.0")] +[assembly: AssemblyVersion("0.10.0.0")] +[assembly: AssemblyFileVersion("0.10.1.0")] From eb4dae7197ae88953481000b8cd8b074354f33ab Mon Sep 17 00:00:00 2001 From: Bala Ganapathy Date: Thu, 15 Sep 2016 12:35:31 -0700 Subject: [PATCH 03/10] Fixing the casing mismatch in the json value --- .../ProviderRegistrationOperations.cs | 150 +++++++++--------- 1 file changed, 75 insertions(+), 75 deletions(-) diff --git a/src/ResourceManagement/AzureStackAdmin/AzureStackManagement/Generated/ProviderRegistrationOperations.cs b/src/ResourceManagement/AzureStackAdmin/AzureStackManagement/Generated/ProviderRegistrationOperations.cs index d20d2724c98ab..a2dedd523d1e4 100644 --- a/src/ResourceManagement/AzureStackAdmin/AzureStackManagement/Generated/ProviderRegistrationOperations.cs +++ b/src/ResourceManagement/AzureStackAdmin/AzureStackManagement/Generated/ProviderRegistrationOperations.cs @@ -275,23 +275,23 @@ public async Task CreateOrUpdateAsync( { if (parameters.ProviderRegistration.Properties.Extensions is ILazyCollection == false || ((ILazyCollection)parameters.ProviderRegistration.Properties.Extensions).IsInitialized) { - JArray resourceTypesArray = new JArray(); - foreach (Extension resourceTypesItem in parameters.ProviderRegistration.Properties.Extensions) + JArray extensionsArray = new JArray(); + foreach (Extension extensionsItem in parameters.ProviderRegistration.Properties.Extensions) { JObject extensionValue = new JObject(); - resourceTypesArray.Add(extensionValue); + extensionsArray.Add(extensionValue); - if (resourceTypesItem.Name != null) + if (extensionsItem.Name != null) { - extensionValue["name"] = resourceTypesItem.Name; + extensionValue["name"] = extensionsItem.Name; } - if (resourceTypesItem.Uri != null) + if (extensionsItem.Uri != null) { - extensionValue["uri"] = resourceTypesItem.Uri; + extensionValue["uri"] = extensionsItem.Uri; } } - propertiesValue["resourceTypes"] = resourceTypesArray; + propertiesValue["extensions"] = extensionsArray; } } @@ -299,27 +299,27 @@ public async Task CreateOrUpdateAsync( { if (parameters.ProviderRegistration.Properties.ResourceTypes is ILazyCollection == false || ((ILazyCollection)parameters.ProviderRegistration.Properties.ResourceTypes).IsInitialized) { - JArray resourceTypesArray2 = new JArray(); - foreach (ResourceType resourceTypesItem2 in parameters.ProviderRegistration.Properties.ResourceTypes) + JArray resourceTypesArray = new JArray(); + foreach (ResourceType resourceTypesItem in parameters.ProviderRegistration.Properties.ResourceTypes) { JObject resourceTypeValue = new JObject(); - resourceTypesArray2.Add(resourceTypeValue); + resourceTypesArray.Add(resourceTypeValue); - if (resourceTypesItem2.Name != null) + if (resourceTypesItem.Name != null) { - resourceTypeValue["name"] = resourceTypesItem2.Name; + resourceTypeValue["name"] = resourceTypesItem.Name; } - resourceTypeValue["routingType"] = resourceTypesItem2.RoutingType.ToString(); + resourceTypeValue["routingType"] = resourceTypesItem.RoutingType.ToString(); - resourceTypeValue["resourceDeletionPolicy"] = resourceTypesItem2.ResourceDeletionPolicy.ToString(); + resourceTypeValue["resourceDeletionPolicy"] = resourceTypesItem.ResourceDeletionPolicy.ToString(); - if (resourceTypesItem2.AllowedUnauthorizedActions != null) + if (resourceTypesItem.AllowedUnauthorizedActions != null) { - if (resourceTypesItem2.AllowedUnauthorizedActions is ILazyCollection == false || ((ILazyCollection)resourceTypesItem2.AllowedUnauthorizedActions).IsInitialized) + if (resourceTypesItem.AllowedUnauthorizedActions is ILazyCollection == false || ((ILazyCollection)resourceTypesItem.AllowedUnauthorizedActions).IsInitialized) { JArray allowedUnauthorizedActionsArray = new JArray(); - foreach (string allowedUnauthorizedActionsItem in resourceTypesItem2.AllowedUnauthorizedActions) + foreach (string allowedUnauthorizedActionsItem in resourceTypesItem.AllowedUnauthorizedActions) { allowedUnauthorizedActionsArray.Add(allowedUnauthorizedActionsItem); } @@ -327,12 +327,12 @@ public async Task CreateOrUpdateAsync( } } - if (resourceTypesItem2.MeteredResourceIds != null) + if (resourceTypesItem.MeteredResourceIds != null) { - if (resourceTypesItem2.MeteredResourceIds is ILazyCollection == false || ((ILazyCollection)resourceTypesItem2.MeteredResourceIds).IsInitialized) + if (resourceTypesItem.MeteredResourceIds is ILazyCollection == false || ((ILazyCollection)resourceTypesItem.MeteredResourceIds).IsInitialized) { JArray meteredResourceIdsArray = new JArray(); - foreach (string meteredResourceIdsItem in resourceTypesItem2.MeteredResourceIds) + foreach (string meteredResourceIdsItem in resourceTypesItem.MeteredResourceIds) { meteredResourceIdsArray.Add(meteredResourceIdsItem); } @@ -340,14 +340,14 @@ public async Task CreateOrUpdateAsync( } } - resourceTypeValue["marketplaceType"] = resourceTypesItem2.MarketplaceType.ToString(); + resourceTypeValue["marketplaceType"] = resourceTypesItem.MarketplaceType.ToString(); - if (resourceTypesItem2.Endpoints != null) + if (resourceTypesItem.Endpoints != null) { - if (resourceTypesItem2.Endpoints is ILazyCollection == false || ((ILazyCollection)resourceTypesItem2.Endpoints).IsInitialized) + if (resourceTypesItem.Endpoints is ILazyCollection == false || ((ILazyCollection)resourceTypesItem.Endpoints).IsInitialized) { JArray endpointsArray = new JArray(); - foreach (ResourceProviderEndpoint endpointsItem in resourceTypesItem2.Endpoints) + foreach (ResourceProviderEndpoint endpointsItem in resourceTypesItem.Endpoints) { JObject resourceProviderEndpointValue = new JObject(); endpointsArray.Add(resourceProviderEndpointValue); @@ -396,13 +396,13 @@ public async Task CreateOrUpdateAsync( } } } - propertiesValue["resourceTypes"] = resourceTypesArray2; + propertiesValue["resourceTypes"] = resourceTypesArray; } } if (parameters.ProviderRegistration.Properties.ProvisioningState != null) { - propertiesValue["ProvisioningState"] = parameters.ProviderRegistration.Properties.ProvisioningState; + propertiesValue["provisioningState"] = parameters.ProviderRegistration.Properties.ProvisioningState; } } @@ -614,22 +614,22 @@ public async Task CreateOrUpdateAsync( propertiesInstance.ExtensionUri = extensionUriInstance; } - JToken resourceTypesArray3 = propertiesValue2["resourceTypes"]; - if (resourceTypesArray3 != null && resourceTypesArray3.Type != JTokenType.Null) + JToken extensionsArray2 = propertiesValue2["extensions"]; + if (extensionsArray2 != null && extensionsArray2.Type != JTokenType.Null) { - foreach (JToken resourceTypesValue in ((JArray)resourceTypesArray3)) + foreach (JToken extensionsValue in ((JArray)extensionsArray2)) { Extension extensionInstance = new Extension(); propertiesInstance.Extensions.Add(extensionInstance); - JToken nameValue = resourceTypesValue["name"]; + JToken nameValue = extensionsValue["name"]; if (nameValue != null && nameValue.Type != JTokenType.Null) { string nameInstance = ((string)nameValue); extensionInstance.Name = nameInstance; } - JToken uriValue = resourceTypesValue["uri"]; + JToken uriValue = extensionsValue["uri"]; if (uriValue != null && uriValue.Type != JTokenType.Null) { string uriInstance = ((string)uriValue); @@ -638,36 +638,36 @@ public async Task CreateOrUpdateAsync( } } - JToken resourceTypesArray4 = propertiesValue2["resourceTypes"]; - if (resourceTypesArray4 != null && resourceTypesArray4.Type != JTokenType.Null) + JToken resourceTypesArray2 = propertiesValue2["resourceTypes"]; + if (resourceTypesArray2 != null && resourceTypesArray2.Type != JTokenType.Null) { - foreach (JToken resourceTypesValue2 in ((JArray)resourceTypesArray4)) + foreach (JToken resourceTypesValue in ((JArray)resourceTypesArray2)) { ResourceType resourceTypeInstance = new ResourceType(); propertiesInstance.ResourceTypes.Add(resourceTypeInstance); - JToken nameValue2 = resourceTypesValue2["name"]; + JToken nameValue2 = resourceTypesValue["name"]; if (nameValue2 != null && nameValue2.Type != JTokenType.Null) { string nameInstance2 = ((string)nameValue2); resourceTypeInstance.Name = nameInstance2; } - JToken routingTypeValue = resourceTypesValue2["routingType"]; + JToken routingTypeValue = resourceTypesValue["routingType"]; if (routingTypeValue != null && routingTypeValue.Type != JTokenType.Null) { RoutingType routingTypeInstance = ((RoutingType)Enum.Parse(typeof(RoutingType), ((string)routingTypeValue), true)); resourceTypeInstance.RoutingType = routingTypeInstance; } - JToken resourceDeletionPolicyValue = resourceTypesValue2["resourceDeletionPolicy"]; + JToken resourceDeletionPolicyValue = resourceTypesValue["resourceDeletionPolicy"]; if (resourceDeletionPolicyValue != null && resourceDeletionPolicyValue.Type != JTokenType.Null) { ResourceDeletionPolicy resourceDeletionPolicyInstance = ((ResourceDeletionPolicy)Enum.Parse(typeof(ResourceDeletionPolicy), ((string)resourceDeletionPolicyValue), true)); resourceTypeInstance.ResourceDeletionPolicy = resourceDeletionPolicyInstance; } - JToken allowedUnauthorizedActionsArray2 = resourceTypesValue2["allowedUnauthorizedActions"]; + JToken allowedUnauthorizedActionsArray2 = resourceTypesValue["allowedUnauthorizedActions"]; if (allowedUnauthorizedActionsArray2 != null && allowedUnauthorizedActionsArray2.Type != JTokenType.Null) { foreach (JToken allowedUnauthorizedActionsValue in ((JArray)allowedUnauthorizedActionsArray2)) @@ -676,7 +676,7 @@ public async Task CreateOrUpdateAsync( } } - JToken meteredResourceIdsArray2 = resourceTypesValue2["meteredResourceIds"]; + JToken meteredResourceIdsArray2 = resourceTypesValue["meteredResourceIds"]; if (meteredResourceIdsArray2 != null && meteredResourceIdsArray2.Type != JTokenType.Null) { foreach (JToken meteredResourceIdsValue in ((JArray)meteredResourceIdsArray2)) @@ -685,14 +685,14 @@ public async Task CreateOrUpdateAsync( } } - JToken marketplaceTypeValue = resourceTypesValue2["marketplaceType"]; + JToken marketplaceTypeValue = resourceTypesValue["marketplaceType"]; if (marketplaceTypeValue != null && marketplaceTypeValue.Type != JTokenType.Null) { MarketplaceType marketplaceTypeInstance = ((MarketplaceType)Enum.Parse(typeof(MarketplaceType), ((string)marketplaceTypeValue), true)); resourceTypeInstance.MarketplaceType = marketplaceTypeInstance; } - JToken endpointsArray2 = resourceTypesValue2["endpoints"]; + JToken endpointsArray2 = resourceTypesValue["endpoints"]; if (endpointsArray2 != null && endpointsArray2.Type != JTokenType.Null) { foreach (JToken endpointsValue in ((JArray)endpointsArray2)) @@ -755,7 +755,7 @@ public async Task CreateOrUpdateAsync( } } - JToken provisioningStateValue = propertiesValue2["ProvisioningState"]; + JToken provisioningStateValue = propertiesValue2["provisioningState"]; if (provisioningStateValue != null && provisioningStateValue.Type != JTokenType.Null) { string provisioningStateInstance = ((string)provisioningStateValue); @@ -1240,22 +1240,22 @@ public async Task GetAsync(string resourceGroupNa propertiesInstance.ExtensionUri = extensionUriInstance; } - JToken resourceTypesArray = propertiesValue["resourceTypes"]; - if (resourceTypesArray != null && resourceTypesArray.Type != JTokenType.Null) + JToken extensionsArray = propertiesValue["extensions"]; + if (extensionsArray != null && extensionsArray.Type != JTokenType.Null) { - foreach (JToken resourceTypesValue in ((JArray)resourceTypesArray)) + foreach (JToken extensionsValue in ((JArray)extensionsArray)) { Extension extensionInstance = new Extension(); propertiesInstance.Extensions.Add(extensionInstance); - JToken nameValue = resourceTypesValue["name"]; + JToken nameValue = extensionsValue["name"]; if (nameValue != null && nameValue.Type != JTokenType.Null) { string nameInstance = ((string)nameValue); extensionInstance.Name = nameInstance; } - JToken uriValue = resourceTypesValue["uri"]; + JToken uriValue = extensionsValue["uri"]; if (uriValue != null && uriValue.Type != JTokenType.Null) { string uriInstance = ((string)uriValue); @@ -1264,36 +1264,36 @@ public async Task GetAsync(string resourceGroupNa } } - JToken resourceTypesArray2 = propertiesValue["resourceTypes"]; - if (resourceTypesArray2 != null && resourceTypesArray2.Type != JTokenType.Null) + JToken resourceTypesArray = propertiesValue["resourceTypes"]; + if (resourceTypesArray != null && resourceTypesArray.Type != JTokenType.Null) { - foreach (JToken resourceTypesValue2 in ((JArray)resourceTypesArray2)) + foreach (JToken resourceTypesValue in ((JArray)resourceTypesArray)) { ResourceType resourceTypeInstance = new ResourceType(); propertiesInstance.ResourceTypes.Add(resourceTypeInstance); - JToken nameValue2 = resourceTypesValue2["name"]; + JToken nameValue2 = resourceTypesValue["name"]; if (nameValue2 != null && nameValue2.Type != JTokenType.Null) { string nameInstance2 = ((string)nameValue2); resourceTypeInstance.Name = nameInstance2; } - JToken routingTypeValue = resourceTypesValue2["routingType"]; + JToken routingTypeValue = resourceTypesValue["routingType"]; if (routingTypeValue != null && routingTypeValue.Type != JTokenType.Null) { RoutingType routingTypeInstance = ((RoutingType)Enum.Parse(typeof(RoutingType), ((string)routingTypeValue), true)); resourceTypeInstance.RoutingType = routingTypeInstance; } - JToken resourceDeletionPolicyValue = resourceTypesValue2["resourceDeletionPolicy"]; + JToken resourceDeletionPolicyValue = resourceTypesValue["resourceDeletionPolicy"]; if (resourceDeletionPolicyValue != null && resourceDeletionPolicyValue.Type != JTokenType.Null) { ResourceDeletionPolicy resourceDeletionPolicyInstance = ((ResourceDeletionPolicy)Enum.Parse(typeof(ResourceDeletionPolicy), ((string)resourceDeletionPolicyValue), true)); resourceTypeInstance.ResourceDeletionPolicy = resourceDeletionPolicyInstance; } - JToken allowedUnauthorizedActionsArray = resourceTypesValue2["allowedUnauthorizedActions"]; + JToken allowedUnauthorizedActionsArray = resourceTypesValue["allowedUnauthorizedActions"]; if (allowedUnauthorizedActionsArray != null && allowedUnauthorizedActionsArray.Type != JTokenType.Null) { foreach (JToken allowedUnauthorizedActionsValue in ((JArray)allowedUnauthorizedActionsArray)) @@ -1302,7 +1302,7 @@ public async Task GetAsync(string resourceGroupNa } } - JToken meteredResourceIdsArray = resourceTypesValue2["meteredResourceIds"]; + JToken meteredResourceIdsArray = resourceTypesValue["meteredResourceIds"]; if (meteredResourceIdsArray != null && meteredResourceIdsArray.Type != JTokenType.Null) { foreach (JToken meteredResourceIdsValue in ((JArray)meteredResourceIdsArray)) @@ -1311,14 +1311,14 @@ public async Task GetAsync(string resourceGroupNa } } - JToken marketplaceTypeValue = resourceTypesValue2["marketplaceType"]; + JToken marketplaceTypeValue = resourceTypesValue["marketplaceType"]; if (marketplaceTypeValue != null && marketplaceTypeValue.Type != JTokenType.Null) { MarketplaceType marketplaceTypeInstance = ((MarketplaceType)Enum.Parse(typeof(MarketplaceType), ((string)marketplaceTypeValue), true)); resourceTypeInstance.MarketplaceType = marketplaceTypeInstance; } - JToken endpointsArray = resourceTypesValue2["endpoints"]; + JToken endpointsArray = resourceTypesValue["endpoints"]; if (endpointsArray != null && endpointsArray.Type != JTokenType.Null) { foreach (JToken endpointsValue in ((JArray)endpointsArray)) @@ -1381,7 +1381,7 @@ public async Task GetAsync(string resourceGroupNa } } - JToken provisioningStateValue = propertiesValue["ProvisioningState"]; + JToken provisioningStateValue = propertiesValue["provisioningState"]; if (provisioningStateValue != null && provisioningStateValue.Type != JTokenType.Null) { string provisioningStateInstance = ((string)provisioningStateValue); @@ -1714,22 +1714,22 @@ public async Task ListAsync(string resourceGroup propertiesInstance.ExtensionUri = extensionUriInstance; } - JToken resourceTypesArray = propertiesValue["resourceTypes"]; - if (resourceTypesArray != null && resourceTypesArray.Type != JTokenType.Null) + JToken extensionsArray = propertiesValue["extensions"]; + if (extensionsArray != null && extensionsArray.Type != JTokenType.Null) { - foreach (JToken resourceTypesValue in ((JArray)resourceTypesArray)) + foreach (JToken extensionsValue in ((JArray)extensionsArray)) { Extension extensionInstance = new Extension(); propertiesInstance.Extensions.Add(extensionInstance); - JToken nameValue = resourceTypesValue["name"]; + JToken nameValue = extensionsValue["name"]; if (nameValue != null && nameValue.Type != JTokenType.Null) { string nameInstance = ((string)nameValue); extensionInstance.Name = nameInstance; } - JToken uriValue = resourceTypesValue["uri"]; + JToken uriValue = extensionsValue["uri"]; if (uriValue != null && uriValue.Type != JTokenType.Null) { string uriInstance = ((string)uriValue); @@ -1738,36 +1738,36 @@ public async Task ListAsync(string resourceGroup } } - JToken resourceTypesArray2 = propertiesValue["resourceTypes"]; - if (resourceTypesArray2 != null && resourceTypesArray2.Type != JTokenType.Null) + JToken resourceTypesArray = propertiesValue["resourceTypes"]; + if (resourceTypesArray != null && resourceTypesArray.Type != JTokenType.Null) { - foreach (JToken resourceTypesValue2 in ((JArray)resourceTypesArray2)) + foreach (JToken resourceTypesValue in ((JArray)resourceTypesArray)) { ResourceType resourceTypeInstance = new ResourceType(); propertiesInstance.ResourceTypes.Add(resourceTypeInstance); - JToken nameValue2 = resourceTypesValue2["name"]; + JToken nameValue2 = resourceTypesValue["name"]; if (nameValue2 != null && nameValue2.Type != JTokenType.Null) { string nameInstance2 = ((string)nameValue2); resourceTypeInstance.Name = nameInstance2; } - JToken routingTypeValue = resourceTypesValue2["routingType"]; + JToken routingTypeValue = resourceTypesValue["routingType"]; if (routingTypeValue != null && routingTypeValue.Type != JTokenType.Null) { RoutingType routingTypeInstance = ((RoutingType)Enum.Parse(typeof(RoutingType), ((string)routingTypeValue), true)); resourceTypeInstance.RoutingType = routingTypeInstance; } - JToken resourceDeletionPolicyValue = resourceTypesValue2["resourceDeletionPolicy"]; + JToken resourceDeletionPolicyValue = resourceTypesValue["resourceDeletionPolicy"]; if (resourceDeletionPolicyValue != null && resourceDeletionPolicyValue.Type != JTokenType.Null) { ResourceDeletionPolicy resourceDeletionPolicyInstance = ((ResourceDeletionPolicy)Enum.Parse(typeof(ResourceDeletionPolicy), ((string)resourceDeletionPolicyValue), true)); resourceTypeInstance.ResourceDeletionPolicy = resourceDeletionPolicyInstance; } - JToken allowedUnauthorizedActionsArray = resourceTypesValue2["allowedUnauthorizedActions"]; + JToken allowedUnauthorizedActionsArray = resourceTypesValue["allowedUnauthorizedActions"]; if (allowedUnauthorizedActionsArray != null && allowedUnauthorizedActionsArray.Type != JTokenType.Null) { foreach (JToken allowedUnauthorizedActionsValue in ((JArray)allowedUnauthorizedActionsArray)) @@ -1776,7 +1776,7 @@ public async Task ListAsync(string resourceGroup } } - JToken meteredResourceIdsArray = resourceTypesValue2["meteredResourceIds"]; + JToken meteredResourceIdsArray = resourceTypesValue["meteredResourceIds"]; if (meteredResourceIdsArray != null && meteredResourceIdsArray.Type != JTokenType.Null) { foreach (JToken meteredResourceIdsValue in ((JArray)meteredResourceIdsArray)) @@ -1785,14 +1785,14 @@ public async Task ListAsync(string resourceGroup } } - JToken marketplaceTypeValue = resourceTypesValue2["marketplaceType"]; + JToken marketplaceTypeValue = resourceTypesValue["marketplaceType"]; if (marketplaceTypeValue != null && marketplaceTypeValue.Type != JTokenType.Null) { MarketplaceType marketplaceTypeInstance = ((MarketplaceType)Enum.Parse(typeof(MarketplaceType), ((string)marketplaceTypeValue), true)); resourceTypeInstance.MarketplaceType = marketplaceTypeInstance; } - JToken endpointsArray = resourceTypesValue2["endpoints"]; + JToken endpointsArray = resourceTypesValue["endpoints"]; if (endpointsArray != null && endpointsArray.Type != JTokenType.Null) { foreach (JToken endpointsValue in ((JArray)endpointsArray)) @@ -1855,7 +1855,7 @@ public async Task ListAsync(string resourceGroup } } - JToken provisioningStateValue = propertiesValue["ProvisioningState"]; + JToken provisioningStateValue = propertiesValue["provisioningState"]; if (provisioningStateValue != null && provisioningStateValue.Type != JTokenType.Null) { string provisioningStateInstance = ((string)provisioningStateValue); From b7be99cc1612e8e046c5fe9e9ef9b816911e0b70 Mon Sep 17 00:00:00 2001 From: kirankumarkolli Date: Tue, 1 Nov 2016 18:25:14 -0700 Subject: [PATCH 04/10] InteractiveHive cluster type head and worker nodes defaults to set to Standard_D13_v2 & related UT's. --- .../HDInsight.Tests/HDInsight.Tests.csproj | 1 + .../Helpers/GetClusterSpecHelpers.cs | 10 + .../ScenarioTests/CreateClusterTests.cs | 30 + ...TestCreateLinuxInteractiveHiveCluster.json | 2312 +++++++++++++++++ ...ClusterOperations.Create.Customizations.cs | 20 +- 5 files changed, 2370 insertions(+), 3 deletions(-) create mode 100644 src/ResourceManagement/HDInsight/HDInsight.Tests/SessionRecords/HDInsight.Tests.CreateClusterTests/TestCreateLinuxInteractiveHiveCluster.json diff --git a/src/ResourceManagement/HDInsight/HDInsight.Tests/HDInsight.Tests.csproj b/src/ResourceManagement/HDInsight/HDInsight.Tests/HDInsight.Tests.csproj index 05521e6265026..55237a8821ddd 100644 --- a/src/ResourceManagement/HDInsight/HDInsight.Tests/HDInsight.Tests.csproj +++ b/src/ResourceManagement/HDInsight/HDInsight.Tests/HDInsight.Tests.csproj @@ -44,6 +44,7 @@ PreserveNewest + PreserveNewest diff --git a/src/ResourceManagement/HDInsight/HDInsight.Tests/Helpers/GetClusterSpecHelpers.cs b/src/ResourceManagement/HDInsight/HDInsight.Tests/Helpers/GetClusterSpecHelpers.cs index ff47e235f730f..d84240a048dd5 100644 --- a/src/ResourceManagement/HDInsight/HDInsight.Tests/Helpers/GetClusterSpecHelpers.cs +++ b/src/ResourceManagement/HDInsight/HDInsight.Tests/Helpers/GetClusterSpecHelpers.cs @@ -318,6 +318,16 @@ public static ClusterCreateParameters GetCustomCreateParametersSparkIaas() return clusterparams; } + public static ClusterCreateParameters GetCustomCreateParametersInteractiveHiveIaas() + { + var clusterparams = GetCustomCreateParametersIaas(); + clusterparams.Version = "3.5"; + clusterparams.ClusterType = "InteractiveHive"; + clusterparams.WorkerNodeSize = null; + clusterparams.HeadNodeSize = null; + return clusterparams; + } + public static ClusterCreateParametersExtended AddConfigurations(ClusterCreateParametersExtended cluster, string configurationKey, Dictionary configs) { string configurations = cluster.Properties.ClusterDefinition.Configurations; diff --git a/src/ResourceManagement/HDInsight/HDInsight.Tests/ScenarioTests/CreateClusterTests.cs b/src/ResourceManagement/HDInsight/HDInsight.Tests/ScenarioTests/CreateClusterTests.cs index 7504f39b312e2..2db1e825b6a2c 100644 --- a/src/ResourceManagement/HDInsight/HDInsight.Tests/ScenarioTests/CreateClusterTests.cs +++ b/src/ResourceManagement/HDInsight/HDInsight.Tests/ScenarioTests/CreateClusterTests.cs @@ -423,5 +423,35 @@ public void TestCreateLinuxSparkClusterWithComponentVersion() Assert.Equal(result.State, AsyncOperationState.Succeeded); } } + + [Fact] + public void TestCreateLinuxInteractiveHiveCluster() + { + var handler = new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }; + + using (var context = UndoContext.Current) + { + context.Start(); + + var client = HDInsightManagementTestUtilities.GetHDInsightManagementClient(handler); + var resourceManagementClient = HDInsightManagementTestUtilities.GetResourceManagementClient(handler); + var resourceGroup = HDInsightManagementTestUtilities.CreateResourceGroup(resourceManagementClient); + + var cluster = GetClusterSpecHelpers.GetCustomCreateParametersInteractiveHiveIaas(); + cluster.ClusterTier = Tier.Standard; + const string dnsname = "hdisdk-InteractiveHiveLinuxClusterTest2"; + + var createresponse = client.Clusters.Create(resourceGroup, dnsname, cluster); + Assert.Equal(dnsname, createresponse.Cluster.Name); + + client.Clusters.Get(resourceGroup, dnsname); + Assert.NotNull(createresponse.Cluster.Properties.ClusterDefinition.ComponentVersion); + + HDInsightManagementTestUtilities.WaitForClusterToMoveToRunning(resourceGroup, dnsname, client); + var result = client.Clusters.Delete(resourceGroup, dnsname); + Assert.Equal(result.StatusCode, HttpStatusCode.OK); + Assert.Equal(result.State, AsyncOperationState.Succeeded); + } + } } } \ No newline at end of file diff --git a/src/ResourceManagement/HDInsight/HDInsight.Tests/SessionRecords/HDInsight.Tests.CreateClusterTests/TestCreateLinuxInteractiveHiveCluster.json b/src/ResourceManagement/HDInsight/HDInsight.Tests/SessionRecords/HDInsight.Tests.CreateClusterTests/TestCreateLinuxInteractiveHiveCluster.json new file mode 100644 index 0000000000000..b527e3afadef6 --- /dev/null +++ b/src/ResourceManagement/HDInsight/HDInsight.Tests/SessionRecords/HDInsight.Tests.CreateClusterTests/TestCreateLinuxInteractiveHiveCluster.json @@ -0,0 +1,2312 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourcegroups/hdi3355?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Jlc291cmNlZ3JvdXBzL2hkaTMzNTU/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/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355\",\r\n \"name\": \"hdi3355\",\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": [ + "1198" + ], + "x-ms-request-id": [ + "4e7a83e2-71ef-4874-87f8-eb90d1f80e1d" + ], + "x-ms-correlation-request-id": [ + "4e7a83e2-71ef-4874-87f8-eb90d1f80e1d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20161102T003846Z:4e7a83e2-71ef-4874-87f8-eb90d1f80e1d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 00:38:46 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2?api-version=2015-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Jlc291cmNlR3JvdXBzL2hkaTMzNTUvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLUludGVyYWN0aXZlSGl2ZUxpbnV4Q2x1c3RlclRlc3QyP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5\",\r\n \"osType\": \"Linux\",\r\n \"tier\": \"Standard\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"InteractiveHive\",\r\n \"componentVersion\": {},\r\n \"configurations\": {\r\n \"core-site\": {\r\n \"fs.defaultFS\": \"wasb://sdkcontainer@kkhdistore.blob.core.windows.net\",\r\n \"fs.azure.account.key.kkhdistore.blob.core.windows.net\": \"UCH4ouZCIyIM7nW4ySMQuhF6/i+8CiHsya90TD5klFCanXae8c9gLOMugByfmHAJwg1zlREbKMq7WEmvfCE/uw==\"\r\n },\r\n \"gateway\": {\r\n \"restAuthCredential.isEnabled\": \"true\",\r\n \"restAuthCredential.username\": \"admin\",\r\n \"restAuthCredential.password\": \"KKProd~123\"\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_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"KKProd~123\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"KKProd~123\"\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\": \"sshuser\",\r\n \"password\": \"KKProd~123\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "1862" + ], + "User-Agent": [ + "ARM", + "SDK", + "v1.3.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"name\": \"hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"0684de70-3cd0-4f89-a88c-559a0acbb64b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.5.1000.0.8750792.json\",\r\n \"kind\": \"InteractiveHive\",\r\n \"componentVersion\": {}\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_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\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\": \"sshuser\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2016-11-02T00:39:19.673\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 46\r\n },\r\n \"tier\": \"standard\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1198" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-hdi-clusteruri": [ + "https://management.azure.com/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2?api-version=2015-03-01-preview" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com:443/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2/azureasyncoperations/create?api-version=2015-03-01-preview" + ], + "x-ms-request-id": [ + "15f39dfd-415f-4446-af0e-241e1b0ca4d2" + ], + "x-ms-hdi-served-by": [ + "" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "aebdb037-cb57-4ca9-b713-1e670fe6c6ed" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20161102T003918Z:aebdb037-cb57-4ca9-b713-1e670fe6c6ed" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 00:39:17 GMT" + ], + "ETag": [ + "\"0684de70-3cd0-4f89-a88c-559a0acbb64b\"" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2?api-version=2015-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Jlc291cmNlR3JvdXBzL2hkaTMzNTUvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLUludGVyYWN0aXZlSGl2ZUxpbnV4Q2x1c3RlclRlc3QyP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "ARM", + "SDK", + "v1.3.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"name\": \"hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"0684de70-3cd0-4f89-a88c-559a0acbb64b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.5.1000.0.8750792.json\",\r\n \"kind\": \"InteractiveHive\",\r\n \"componentVersion\": {}\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_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\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\": \"sshuser\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2016-11-02T00:39:19.673\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 46\r\n },\r\n \"tier\": \"standard\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1198" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f1aa3aa9-66c6-4ad7-acd8-336b392b8b18" + ], + "x-ms-hdi-served-by": [ + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14930" + ], + "x-ms-correlation-request-id": [ + "576e2db0-9511-4bf4-a1ef-499a42b0fdb6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20161102T003919Z:576e2db0-9511-4bf4-a1ef-499a42b0fdb6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 00:39:18 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2?api-version=2015-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Jlc291cmNlR3JvdXBzL2hkaTMzNTUvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLUludGVyYWN0aXZlSGl2ZUxpbnV4Q2x1c3RlclRlc3QyP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "ARM", + "SDK", + "v1.3.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"name\": \"hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"0684de70-3cd0-4f89-a88c-559a0acbb64b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.5.1000.0.8750792.json\",\r\n \"kind\": \"InteractiveHive\",\r\n \"componentVersion\": {}\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_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\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\": \"sshuser\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"ClusterStorageConfiguration\",\r\n \"createdDate\": \"2016-11-02T00:39:19.673\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 46\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1478" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7cb0923a-cc75-420c-8dea-f11323d07ca3" + ], + "x-ms-hdi-served-by": [ + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14933" + ], + "x-ms-correlation-request-id": [ + "0676b821-b396-47c4-9b6c-084020143890" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20161102T004020Z:0676b821-b396-47c4-9b6c-084020143890" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 00:40:20 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2?api-version=2015-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Jlc291cmNlR3JvdXBzL2hkaTMzNTUvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLUludGVyYWN0aXZlSGl2ZUxpbnV4Q2x1c3RlclRlc3QyP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "ARM", + "SDK", + "v1.3.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"name\": \"hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"0684de70-3cd0-4f89-a88c-559a0acbb64b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.5.1000.0.8750792.json\",\r\n \"kind\": \"InteractiveHive\",\r\n \"componentVersion\": {}\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_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\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\": \"sshuser\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"AzureVMConfiguration\",\r\n \"createdDate\": \"2016-11-02T00:39:19.673\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 46\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1471" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "03a559e5-6e32-4c4f-820f-158816fd6a4b" + ], + "x-ms-hdi-served-by": [ + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14932" + ], + "x-ms-correlation-request-id": [ + "08c6d833-102e-46c5-8341-b9ae124a4cdf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20161102T004121Z:08c6d833-102e-46c5-8341-b9ae124a4cdf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 00:41:20 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2?api-version=2015-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Jlc291cmNlR3JvdXBzL2hkaTMzNTUvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLUludGVyYWN0aXZlSGl2ZUxpbnV4Q2x1c3RlclRlc3QyP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "ARM", + "SDK", + "v1.3.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"name\": \"hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"0684de70-3cd0-4f89-a88c-559a0acbb64b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.5.1000.0.8750792.json\",\r\n \"kind\": \"InteractiveHive\",\r\n \"componentVersion\": {}\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_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\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\": \"sshuser\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"AzureVMConfiguration\",\r\n \"createdDate\": \"2016-11-02T00:39:19.673\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 46\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1471" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "87868b81-d815-4c26-9ecb-b219456a16fb" + ], + "x-ms-hdi-served-by": [ + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14930" + ], + "x-ms-correlation-request-id": [ + "a665aedf-6a15-4cb9-b6e4-3499f9e8cac0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20161102T004222Z:a665aedf-6a15-4cb9-b6e4-3499f9e8cac0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 00:42:21 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2?api-version=2015-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Jlc291cmNlR3JvdXBzL2hkaTMzNTUvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLUludGVyYWN0aXZlSGl2ZUxpbnV4Q2x1c3RlclRlc3QyP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "ARM", + "SDK", + "v1.3.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"name\": \"hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"0684de70-3cd0-4f89-a88c-559a0acbb64b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.5.1000.0.8750792.json\",\r\n \"kind\": \"InteractiveHive\",\r\n \"componentVersion\": {}\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_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\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\": \"sshuser\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"AzureVMConfiguration\",\r\n \"createdDate\": \"2016-11-02T00:39:19.673\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 46\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1471" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "94a9c3af-f411-4926-a11d-d0c5f0449fce" + ], + "x-ms-hdi-served-by": [ + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14927" + ], + "x-ms-correlation-request-id": [ + "498649ce-031f-4563-a213-02bfdaf84582" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20161102T004322Z:498649ce-031f-4563-a213-02bfdaf84582" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 00:43:22 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2?api-version=2015-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Jlc291cmNlR3JvdXBzL2hkaTMzNTUvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLUludGVyYWN0aXZlSGl2ZUxpbnV4Q2x1c3RlclRlc3QyP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "ARM", + "SDK", + "v1.3.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"name\": \"hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"0684de70-3cd0-4f89-a88c-559a0acbb64b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.5.1000.0.8750792.json\",\r\n \"kind\": \"InteractiveHive\",\r\n \"componentVersion\": {}\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_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\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\": \"sshuser\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"AzureVMConfiguration\",\r\n \"createdDate\": \"2016-11-02T00:39:19.673\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 46\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1471" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "28fd0b1a-7231-43e7-9690-b4cd1ac50f7d" + ], + "x-ms-hdi-served-by": [ + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14926" + ], + "x-ms-correlation-request-id": [ + "c388f770-1860-4c72-9034-12cf46e94c69" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20161102T004424Z:c388f770-1860-4c72-9034-12cf46e94c69" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 00:44:23 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2?api-version=2015-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Jlc291cmNlR3JvdXBzL2hkaTMzNTUvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLUludGVyYWN0aXZlSGl2ZUxpbnV4Q2x1c3RlclRlc3QyP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "ARM", + "SDK", + "v1.3.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"name\": \"hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"0684de70-3cd0-4f89-a88c-559a0acbb64b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.5.1000.0.8750792.json\",\r\n \"kind\": \"InteractiveHive\",\r\n \"componentVersion\": {}\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_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\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\": \"sshuser\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"AzureVMConfiguration\",\r\n \"createdDate\": \"2016-11-02T00:39:19.673\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 46\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1471" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "66887258-8676-4a2a-8eb7-ec231bbd1743" + ], + "x-ms-hdi-served-by": [ + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14930" + ], + "x-ms-correlation-request-id": [ + "fa0008ab-dfaf-47fa-812e-c4a53af3c90a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20161102T004524Z:fa0008ab-dfaf-47fa-812e-c4a53af3c90a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 00:45:24 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2?api-version=2015-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Jlc291cmNlR3JvdXBzL2hkaTMzNTUvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLUludGVyYWN0aXZlSGl2ZUxpbnV4Q2x1c3RlclRlc3QyP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "ARM", + "SDK", + "v1.3.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"name\": \"hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"0684de70-3cd0-4f89-a88c-559a0acbb64b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.5.1000.0.8750792.json\",\r\n \"kind\": \"InteractiveHive\",\r\n \"componentVersion\": {}\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_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\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\": \"sshuser\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"AzureVMConfiguration\",\r\n \"createdDate\": \"2016-11-02T00:39:19.673\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 46\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1471" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3f932e67-9c32-4eec-a5ab-411900d7d6da" + ], + "x-ms-hdi-served-by": [ + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14929" + ], + "x-ms-correlation-request-id": [ + "d826b30a-9536-48f8-bde3-b99d2dfee5be" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20161102T004625Z:d826b30a-9536-48f8-bde3-b99d2dfee5be" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 00:46:24 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2?api-version=2015-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Jlc291cmNlR3JvdXBzL2hkaTMzNTUvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLUludGVyYWN0aXZlSGl2ZUxpbnV4Q2x1c3RlclRlc3QyP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "ARM", + "SDK", + "v1.3.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"name\": \"hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"0684de70-3cd0-4f89-a88c-559a0acbb64b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.5.1000.0.8750792.json\",\r\n \"kind\": \"InteractiveHive\",\r\n \"componentVersion\": {}\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_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\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\": \"sshuser\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"AzureVMConfiguration\",\r\n \"createdDate\": \"2016-11-02T00:39:19.673\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 46\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1471" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6184b01b-4b2c-481e-80b5-288d56a03799" + ], + "x-ms-hdi-served-by": [ + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14925" + ], + "x-ms-correlation-request-id": [ + "f52e1445-bebc-4ab5-9cfe-8b17dbcb992f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20161102T004726Z:f52e1445-bebc-4ab5-9cfe-8b17dbcb992f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 00:47:25 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2?api-version=2015-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Jlc291cmNlR3JvdXBzL2hkaTMzNTUvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLUludGVyYWN0aXZlSGl2ZUxpbnV4Q2x1c3RlclRlc3QyP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "ARM", + "SDK", + "v1.3.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"name\": \"hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"0684de70-3cd0-4f89-a88c-559a0acbb64b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.5.1000.0.8750792.json\",\r\n \"kind\": \"InteractiveHive\",\r\n \"componentVersion\": {}\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_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\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\": \"sshuser\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"AzureVMConfiguration\",\r\n \"createdDate\": \"2016-11-02T00:39:19.673\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 46\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1471" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "44592805-029f-43cb-be11-8707e3d65569" + ], + "x-ms-hdi-served-by": [ + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14923" + ], + "x-ms-correlation-request-id": [ + "a6aadc8c-f5c0-403c-811f-c0a8bc8fdd6a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20161102T004827Z:a6aadc8c-f5c0-403c-811f-c0a8bc8fdd6a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 00:48:27 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2?api-version=2015-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Jlc291cmNlR3JvdXBzL2hkaTMzNTUvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLUludGVyYWN0aXZlSGl2ZUxpbnV4Q2x1c3RlclRlc3QyP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "ARM", + "SDK", + "v1.3.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"name\": \"hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"0684de70-3cd0-4f89-a88c-559a0acbb64b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.5.1000.0.8750792.json\",\r\n \"kind\": \"InteractiveHive\",\r\n \"componentVersion\": {}\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_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\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\": \"sshuser\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"AzureVMConfiguration\",\r\n \"createdDate\": \"2016-11-02T00:39:19.673\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 46\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1471" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c5f89b73-340a-4aee-a98a-625c344f1274" + ], + "x-ms-hdi-served-by": [ + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14919" + ], + "x-ms-correlation-request-id": [ + "0c880442-8cb8-4d55-90ab-a5ebedec004f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20161102T004928Z:0c880442-8cb8-4d55-90ab-a5ebedec004f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 00:49:27 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2?api-version=2015-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Jlc291cmNlR3JvdXBzL2hkaTMzNTUvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLUludGVyYWN0aXZlSGl2ZUxpbnV4Q2x1c3RlclRlc3QyP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "ARM", + "SDK", + "v1.3.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"name\": \"hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"0684de70-3cd0-4f89-a88c-559a0acbb64b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.5.1000.0.8750792.json\",\r\n \"kind\": \"InteractiveHive\",\r\n \"componentVersion\": {}\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_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\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\": \"sshuser\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"HdInsightConfiguration\",\r\n \"createdDate\": \"2016-11-02T00:39:19.673\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 46\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1473" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "597bcc6c-7503-4cb0-922c-659881bd6050" + ], + "x-ms-hdi-served-by": [ + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14923" + ], + "x-ms-correlation-request-id": [ + "2227d4a4-7826-42ed-8df3-993d02ff6f55" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20161102T005029Z:2227d4a4-7826-42ed-8df3-993d02ff6f55" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 00:50:29 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2?api-version=2015-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Jlc291cmNlR3JvdXBzL2hkaTMzNTUvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLUludGVyYWN0aXZlSGl2ZUxpbnV4Q2x1c3RlclRlc3QyP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "ARM", + "SDK", + "v1.3.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"name\": \"hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"0684de70-3cd0-4f89-a88c-559a0acbb64b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.5.1000.0.8750792.json\",\r\n \"kind\": \"InteractiveHive\",\r\n \"componentVersion\": {}\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_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\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\": \"sshuser\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"HdInsightConfiguration\",\r\n \"createdDate\": \"2016-11-02T00:39:19.673\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 46\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1473" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "44c69a30-6b1e-4c34-9312-6d49a63f16b7" + ], + "x-ms-hdi-served-by": [ + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14920" + ], + "x-ms-correlation-request-id": [ + "b462d384-45c9-4908-8ddb-232635b70c89" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20161102T005129Z:b462d384-45c9-4908-8ddb-232635b70c89" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 00:51:29 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2?api-version=2015-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Jlc291cmNlR3JvdXBzL2hkaTMzNTUvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLUludGVyYWN0aXZlSGl2ZUxpbnV4Q2x1c3RlclRlc3QyP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "ARM", + "SDK", + "v1.3.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"name\": \"hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"0684de70-3cd0-4f89-a88c-559a0acbb64b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.5.1000.0.8750792.json\",\r\n \"kind\": \"InteractiveHive\",\r\n \"componentVersion\": {}\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_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\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\": \"sshuser\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"HdInsightConfiguration\",\r\n \"createdDate\": \"2016-11-02T00:39:19.673\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 46\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1473" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1251bd2e-c969-4934-9f49-b973f19d1fb3" + ], + "x-ms-hdi-served-by": [ + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14917" + ], + "x-ms-correlation-request-id": [ + "185ccf11-3f52-463c-8c86-0e32e3fc8525" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20161102T005230Z:185ccf11-3f52-463c-8c86-0e32e3fc8525" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 00:52:29 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2?api-version=2015-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Jlc291cmNlR3JvdXBzL2hkaTMzNTUvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLUludGVyYWN0aXZlSGl2ZUxpbnV4Q2x1c3RlclRlc3QyP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "ARM", + "SDK", + "v1.3.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"name\": \"hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"0684de70-3cd0-4f89-a88c-559a0acbb64b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.5.1000.0.8750792.json\",\r\n \"kind\": \"InteractiveHive\",\r\n \"componentVersion\": {}\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_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\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\": \"sshuser\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"HdInsightConfiguration\",\r\n \"createdDate\": \"2016-11-02T00:39:19.673\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 46\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1473" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "389df568-2541-468e-bf40-ec935a87d1d2" + ], + "x-ms-hdi-served-by": [ + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14914" + ], + "x-ms-correlation-request-id": [ + "aa36bfaa-3f37-4e69-aff5-69cd35b49a9b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20161102T005331Z:aa36bfaa-3f37-4e69-aff5-69cd35b49a9b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 00:53:30 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2?api-version=2015-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Jlc291cmNlR3JvdXBzL2hkaTMzNTUvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLUludGVyYWN0aXZlSGl2ZUxpbnV4Q2x1c3RlclRlc3QyP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "ARM", + "SDK", + "v1.3.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"name\": \"hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"0684de70-3cd0-4f89-a88c-559a0acbb64b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.5.1000.0.8750792.json\",\r\n \"kind\": \"InteractiveHive\",\r\n \"componentVersion\": {}\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_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\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\": \"sshuser\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"HdInsightConfiguration\",\r\n \"createdDate\": \"2016-11-02T00:39:19.673\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 46\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1473" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7fbde32d-57b3-4bc8-8884-2c39bb40759e" + ], + "x-ms-hdi-served-by": [ + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14912" + ], + "x-ms-correlation-request-id": [ + "8834f47c-5a4d-4f1c-bb85-4639f632533d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20161102T005432Z:8834f47c-5a4d-4f1c-bb85-4639f632533d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 00:54:31 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2?api-version=2015-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Jlc291cmNlR3JvdXBzL2hkaTMzNTUvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLUludGVyYWN0aXZlSGl2ZUxpbnV4Q2x1c3RlclRlc3QyP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "ARM", + "SDK", + "v1.3.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"name\": \"hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"0684de70-3cd0-4f89-a88c-559a0acbb64b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.5.1000.0.8750792.json\",\r\n \"kind\": \"InteractiveHive\",\r\n \"componentVersion\": {}\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_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\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\": \"sshuser\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"HdInsightConfiguration\",\r\n \"createdDate\": \"2016-11-02T00:39:19.673\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 46\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1473" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5de3299c-39e4-40ab-aebe-a88aa0425436" + ], + "x-ms-hdi-served-by": [ + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14920" + ], + "x-ms-correlation-request-id": [ + "1d085794-d893-490f-bcad-4007577ad1f7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20161102T005532Z:1d085794-d893-490f-bcad-4007577ad1f7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 00:55:32 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2?api-version=2015-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Jlc291cmNlR3JvdXBzL2hkaTMzNTUvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLUludGVyYWN0aXZlSGl2ZUxpbnV4Q2x1c3RlclRlc3QyP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "ARM", + "SDK", + "v1.3.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"name\": \"hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"0684de70-3cd0-4f89-a88c-559a0acbb64b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.5.1000.0.8750792.json\",\r\n \"kind\": \"InteractiveHive\",\r\n \"componentVersion\": {}\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_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\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\": \"sshuser\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"HdInsightConfiguration\",\r\n \"createdDate\": \"2016-11-02T00:39:19.673\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 46\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1473" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e43faf27-d465-41ac-8a4d-dfd5849620d9" + ], + "x-ms-hdi-served-by": [ + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14919" + ], + "x-ms-correlation-request-id": [ + "a115aaa6-790e-4c06-b796-dff95f1144ee" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20161102T005633Z:a115aaa6-790e-4c06-b796-dff95f1144ee" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 00:56:33 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2?api-version=2015-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Jlc291cmNlR3JvdXBzL2hkaTMzNTUvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLUludGVyYWN0aXZlSGl2ZUxpbnV4Q2x1c3RlclRlc3QyP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "ARM", + "SDK", + "v1.3.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"name\": \"hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"0684de70-3cd0-4f89-a88c-559a0acbb64b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.5.1000.0.8750792.json\",\r\n \"kind\": \"InteractiveHive\",\r\n \"componentVersion\": {}\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_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\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\": \"sshuser\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2016-11-02T00:39:19.673\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 46\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1457" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "36feeeb9-feca-4763-a620-92ed4392b63c" + ], + "x-ms-hdi-served-by": [ + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14918" + ], + "x-ms-correlation-request-id": [ + "2cab2fc3-968d-47a5-9790-784b02fb2378" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20161102T005734Z:2cab2fc3-968d-47a5-9790-784b02fb2378" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 00:57:34 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2?api-version=2015-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Jlc291cmNlR3JvdXBzL2hkaTMzNTUvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLUludGVyYWN0aXZlSGl2ZUxpbnV4Q2x1c3RlclRlc3QyP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "ARM", + "SDK", + "v1.3.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"name\": \"hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"0684de70-3cd0-4f89-a88c-559a0acbb64b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.5.1000.0.8750792.json\",\r\n \"kind\": \"InteractiveHive\",\r\n \"componentVersion\": {}\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_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\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\": \"sshuser\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2016-11-02T00:39:19.673\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 46\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1457" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "da6f1832-42bc-4941-aebe-0b109f26895c" + ], + "x-ms-hdi-served-by": [ + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14917" + ], + "x-ms-correlation-request-id": [ + "41039d03-bf5a-4109-8b81-8fa1abffc46a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20161102T005740Z:41039d03-bf5a-4109-8b81-8fa1abffc46a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 00:57:40 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2?api-version=2015-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Jlc291cmNlR3JvdXBzL2hkaTMzNTUvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLUludGVyYWN0aXZlSGl2ZUxpbnV4Q2x1c3RlclRlc3QyP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "ARM", + "SDK", + "v1.3.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"name\": \"hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"0684de70-3cd0-4f89-a88c-559a0acbb64b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.5.1000.0.8750792.json\",\r\n \"kind\": \"InteractiveHive\",\r\n \"componentVersion\": {}\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_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\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\": \"sshuser\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2016-11-02T00:39:19.673\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 46\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1457" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e53f87a8-73d0-4f07-9c12-482da496a02c" + ], + "x-ms-hdi-served-by": [ + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14916" + ], + "x-ms-correlation-request-id": [ + "b8ea32fd-185b-436a-b7f0-d10b3b90bc6f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20161102T005742Z:b8ea32fd-185b-436a-b7f0-d10b3b90bc6f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 00:57:42 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2?api-version=2015-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Jlc291cmNlR3JvdXBzL2hkaTMzNTUvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLUludGVyYWN0aXZlSGl2ZUxpbnV4Q2x1c3RlclRlc3QyP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "ARM", + "SDK", + "v1.3.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com:443/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/providers/Microsoft.HDInsight/locations/West US/azureasyncoperations/8046b0be-f1cd-4de1-8d0d-953447b5099c-0?api-version=2015-03-01-preview" + ], + "x-ms-request-id": [ + "48a2ff9a-d997-4d12-8834-824613659ec7" + ], + "x-ms-hdi-served-by": [ + "" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "17bcac2e-cb85-401d-9808-46d42a2eda8d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20161102T005745Z:17bcac2e-cb85-401d-9808-46d42a2eda8d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 00:57:45 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/providers/Microsoft.HDInsight/locations/West%20US/operationresults/8046b0be-f1cd-4de1-8d0d-953447b5099c-0?api-version=2015-03-01-preview" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/providers/Microsoft.HDInsight/locations/West%20US/azureasyncoperations/8046b0be-f1cd-4de1-8d0d-953447b5099c-0?api-version=2015-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9XZXN0JTIwVVMvYXp1cmVhc3luY29wZXJhdGlvbnMvODA0NmIwYmUtZjFjZC00ZGUxLThkMGQtOTUzNDQ3YjUwOTljLTA/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": [ + "41c3f896-f70b-4660-934f-06bb932c7707" + ], + "x-ms-hdi-served-by": [ + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14915" + ], + "x-ms-correlation-request-id": [ + "822597bc-e73e-4c16-8f75-d17b8cdeacbe" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20161102T005746Z:822597bc-e73e-4c16-8f75-d17b8cdeacbe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 00:57:45 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/providers/Microsoft.HDInsight/locations/West%20US/azureasyncoperations/8046b0be-f1cd-4de1-8d0d-953447b5099c-0?api-version=2015-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9XZXN0JTIwVVMvYXp1cmVhc3luY29wZXJhdGlvbnMvODA0NmIwYmUtZjFjZC00ZGUxLThkMGQtOTUzNDQ3YjUwOTljLTA/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": [ + "2c2e5a97-062c-4457-9d58-18f79a58521b" + ], + "x-ms-hdi-served-by": [ + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14913" + ], + "x-ms-correlation-request-id": [ + "81b95e36-b370-45a3-9298-e4fcd6289086" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20161102T005846Z:81b95e36-b370-45a3-9298-e4fcd6289086" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 00:58:45 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/providers/Microsoft.HDInsight/locations/West%20US/azureasyncoperations/8046b0be-f1cd-4de1-8d0d-953447b5099c-0?api-version=2015-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9XZXN0JTIwVVMvYXp1cmVhc3luY29wZXJhdGlvbnMvODA0NmIwYmUtZjFjZC00ZGUxLThkMGQtOTUzNDQ3YjUwOTljLTA/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": [ + "bd0542a1-3762-4d68-8039-e39f791ddbef" + ], + "x-ms-hdi-served-by": [ + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14912" + ], + "x-ms-correlation-request-id": [ + "097fbeef-2e87-4396-9a8e-546b94ad29ad" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20161102T005947Z:097fbeef-2e87-4396-9a8e-546b94ad29ad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 00:59:46 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/providers/Microsoft.HDInsight/locations/West%20US/azureasyncoperations/8046b0be-f1cd-4de1-8d0d-953447b5099c-0?api-version=2015-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9XZXN0JTIwVVMvYXp1cmVhc3luY29wZXJhdGlvbnMvODA0NmIwYmUtZjFjZC00ZGUxLThkMGQtOTUzNDQ3YjUwOTljLTA/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": [ + "8bd6fa7b-f915-40b8-b446-8022141226fd" + ], + "x-ms-hdi-served-by": [ + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14920" + ], + "x-ms-correlation-request-id": [ + "225c70a3-c679-4886-b149-1da6c2d3fe15" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20161102T010047Z:225c70a3-c679-4886-b149-1da6c2d3fe15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 01:00:47 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/providers/Microsoft.HDInsight/locations/West%20US/azureasyncoperations/8046b0be-f1cd-4de1-8d0d-953447b5099c-0?api-version=2015-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9XZXN0JTIwVVMvYXp1cmVhc3luY29wZXJhdGlvbnMvODA0NmIwYmUtZjFjZC00ZGUxLThkMGQtOTUzNDQ3YjUwOTljLTA/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": [ + "457c9ce1-6c34-4cef-a775-f8f4f8945b1a" + ], + "x-ms-hdi-served-by": [ + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14918" + ], + "x-ms-correlation-request-id": [ + "a9e596b9-9a18-4f6b-9005-2eacf00315f2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20161102T010148Z:a9e596b9-9a18-4f6b-9005-2eacf00315f2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 01:01:48 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/providers/Microsoft.HDInsight/locations/West%20US/azureasyncoperations/8046b0be-f1cd-4de1-8d0d-953447b5099c-0?api-version=2015-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9XZXN0JTIwVVMvYXp1cmVhc3luY29wZXJhdGlvbnMvODA0NmIwYmUtZjFjZC00ZGUxLThkMGQtOTUzNDQ3YjUwOTljLTA/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": [ + "769b0cfb-b196-4b2b-8d07-e6fb0f279a99" + ], + "x-ms-hdi-served-by": [ + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14917" + ], + "x-ms-correlation-request-id": [ + "8bc3405d-559e-40cf-a605-7300f42cff43" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20161102T010249Z:8bc3405d-559e-40cf-a605-7300f42cff43" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 01:02:48 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/providers/Microsoft.HDInsight/locations/West%20US/azureasyncoperations/8046b0be-f1cd-4de1-8d0d-953447b5099c-0?api-version=2015-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9XZXN0JTIwVVMvYXp1cmVhc3luY29wZXJhdGlvbnMvODA0NmIwYmUtZjFjZC00ZGUxLThkMGQtOTUzNDQ3YjUwOTljLTA/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": [ + "2cdfef96-1d9b-4351-95ed-63738f90e5e2" + ], + "x-ms-hdi-served-by": [ + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14913" + ], + "x-ms-correlation-request-id": [ + "aae5d71a-bf45-4ac3-9c89-f6fdfdaee106" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20161102T010349Z:aae5d71a-bf45-4ac3-9c89-f6fdfdaee106" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 01:03:49 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/providers/Microsoft.HDInsight/locations/West%20US/azureasyncoperations/8046b0be-f1cd-4de1-8d0d-953447b5099c-0?api-version=2015-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9XZXN0JTIwVVMvYXp1cmVhc3luY29wZXJhdGlvbnMvODA0NmIwYmUtZjFjZC00ZGUxLThkMGQtOTUzNDQ3YjUwOTljLTA/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": [ + "c2fde0b9-3497-47cb-a001-374817bfdd3c" + ], + "x-ms-hdi-served-by": [ + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14912" + ], + "x-ms-correlation-request-id": [ + "c574accf-07a1-4cfa-8ee6-262246194f3c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20161102T010450Z:c574accf-07a1-4cfa-8ee6-262246194f3c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 01:04:50 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/providers/Microsoft.HDInsight/locations/West%20US/azureasyncoperations/8046b0be-f1cd-4de1-8d0d-953447b5099c-0?api-version=2015-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9XZXN0JTIwVVMvYXp1cmVhc3luY29wZXJhdGlvbnMvODA0NmIwYmUtZjFjZC00ZGUxLThkMGQtOTUzNDQ3YjUwOTljLTA/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": [ + "a701b4cb-cec8-4ef7-9631-7f95902952d2" + ], + "x-ms-hdi-served-by": [ + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14911" + ], + "x-ms-correlation-request-id": [ + "72cd9c8d-5315-4fdd-9fd9-dda0cfa55889" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20161102T010550Z:72cd9c8d-5315-4fdd-9fd9-dda0cfa55889" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 01:05:50 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/providers/Microsoft.HDInsight/locations/West%20US/azureasyncoperations/8046b0be-f1cd-4de1-8d0d-953447b5099c-0?api-version=2015-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9XZXN0JTIwVVMvYXp1cmVhc3luY29wZXJhdGlvbnMvODA0NmIwYmUtZjFjZC00ZGUxLThkMGQtOTUzNDQ3YjUwOTljLTA/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": [ + "47926cf2-7011-4428-919c-c52d4272deb6" + ], + "x-ms-hdi-served-by": [ + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14909" + ], + "x-ms-correlation-request-id": [ + "a1394799-b37c-40df-9792-35815c0fd319" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20161102T010651Z:a1394799-b37c-40df-9792-35815c0fd319" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 01:06:51 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/providers/Microsoft.HDInsight/locations/West%20US/azureasyncoperations/8046b0be-f1cd-4de1-8d0d-953447b5099c-0?api-version=2015-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9XZXN0JTIwVVMvYXp1cmVhc3luY29wZXJhdGlvbnMvODA0NmIwYmUtZjFjZC00ZGUxLThkMGQtOTUzNDQ3YjUwOTljLTA/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": [ + "3d556478-c02f-4b4e-8374-40b83ec714dc" + ], + "x-ms-hdi-served-by": [ + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14908" + ], + "x-ms-correlation-request-id": [ + "4835e97c-0e0a-460e-808d-3f829b550a94" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20161102T010752Z:4835e97c-0e0a-460e-808d-3f829b550a94" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 01:07:51 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/providers/Microsoft.HDInsight/locations/West%20US/azureasyncoperations/8046b0be-f1cd-4de1-8d0d-953447b5099c-0?api-version=2015-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9XZXN0JTIwVVMvYXp1cmVhc3luY29wZXJhdGlvbnMvODA0NmIwYmUtZjFjZC00ZGUxLThkMGQtOTUzNDQ3YjUwOTljLTA/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": [ + "fca63173-c095-4985-8c73-62709d92cb71" + ], + "x-ms-hdi-served-by": [ + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14903" + ], + "x-ms-correlation-request-id": [ + "0b0f8d15-66e9-44ec-b49c-484cfb9f3abf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20161102T010852Z:0b0f8d15-66e9-44ec-b49c-484cfb9f3abf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 01:08:52 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/providers/Microsoft.HDInsight/locations/West%20US/azureasyncoperations/8046b0be-f1cd-4de1-8d0d-953447b5099c-0?api-version=2015-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9XZXN0JTIwVVMvYXp1cmVhc3luY29wZXJhdGlvbnMvODA0NmIwYmUtZjFjZC00ZGUxLThkMGQtOTUzNDQ3YjUwOTljLTA/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": [ + "f41b948d-70cd-4a7f-bc2b-6e3a042e8a08" + ], + "x-ms-hdi-served-by": [ + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14902" + ], + "x-ms-correlation-request-id": [ + "65eed05c-a975-4df3-99c8-c3c27fd336a1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20161102T010953Z:65eed05c-a975-4df3-99c8-c3c27fd336a1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 01:09:52 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/providers/Microsoft.HDInsight/locations/West%20US/azureasyncoperations/8046b0be-f1cd-4de1-8d0d-953447b5099c-0?api-version=2015-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9XZXN0JTIwVVMvYXp1cmVhc3luY29wZXJhdGlvbnMvODA0NmIwYmUtZjFjZC00ZGUxLThkMGQtOTUzNDQ3YjUwOTljLTA/YXBpLXZlcnNpb249MjAxNS0wMy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "ARM", + "SDK", + "v1.3.0" + ], + "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": [ + "071a77bf-1456-4143-9c3c-c97dfa9fac77" + ], + "x-ms-hdi-served-by": [ + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14902" + ], + "x-ms-correlation-request-id": [ + "11a07958-ffc6-4c1c-8a7b-cd979289684c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20161102T011054Z:11a07958-ffc6-4c1c-8a7b-cd979289684c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 01:10:53 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "CreateResourceGroup": [ + "hdi3355" + ] + }, + "Variables": { + "SubscriptionId": "28f78ae5-97b2-487e-b097-270de10ce6b8" + } +} \ 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 8decc60a0858b..28419579873e0 100644 --- a/src/ResourceManagement/HDInsight/HDInsight/Customizations/ClusterOperations.Create.Customizations.cs +++ b/src/ResourceManagement/HDInsight/HDInsight/Customizations/ClusterOperations.Create.Customizations.cs @@ -534,6 +534,10 @@ private static string GetHeadNodeSize(ClusterCreateParameters clusterCreateParam { headNodeSize = "Standard_D12"; } + else if (clusterCreateParameters.ClusterType.Equals("InteractiveHive", StringComparison.OrdinalIgnoreCase)) + { + headNodeSize = "Standard_D13_v2"; + } else { headNodeSize = "Large"; @@ -551,9 +555,19 @@ private static string GetWorkerNodeSize(ClusterCreateParameters clusterCreatePar } else { - workerNodeSize = clusterCreateParameters.ClusterType.Equals("Spark", StringComparison.OrdinalIgnoreCase) - ? "Standard_D12" - : "Standard_D3"; + if (clusterCreateParameters.ClusterType.Equals("Spark", StringComparison.OrdinalIgnoreCase)) + { + workerNodeSize = "Standard_D12"; + } + else if (clusterCreateParameters.ClusterType.Equals("InteractiveHive", StringComparison.OrdinalIgnoreCase)) + { + workerNodeSize = "Standard_D13_v2"; + + } + else + { + workerNodeSize = "Standard_D3"; + } } return workerNodeSize; } From e8a3b69c6d34b768d4f3b183512b2678d2e31684 Mon Sep 17 00:00:00 2001 From: Bala Ganapathy Date: Wed, 2 Nov 2016 12:05:15 -0700 Subject: [PATCH 05/10] Fixing tests for the mismatch on the extension name check --- .../AzureStackAdmin.Tests/ResourceProviderManifest.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ResourceManagement/AzureStackAdmin/AzureStackAdmin.Tests/ResourceProviderManifest.cs b/src/ResourceManagement/AzureStackAdmin/AzureStackAdmin.Tests/ResourceProviderManifest.cs index 9ae9b4f9df836..5b37bde476b1d 100644 --- a/src/ResourceManagement/AzureStackAdmin/AzureStackAdmin.Tests/ResourceProviderManifest.cs +++ b/src/ResourceManagement/AzureStackAdmin/AzureStackAdmin.Tests/ResourceProviderManifest.cs @@ -92,7 +92,7 @@ public void GetResourceProviderManifest() Assert.Equal("Microsoft.Sql.Admin", result.ProviderRegistration.Properties.Namespace); Assert.Equal("local", result.ProviderRegistration.Properties.ProviderLocation); Assert.Equal("hostingservers", result.ProviderRegistration.Properties.ResourceTypes[0].Name); - Assert.Equal("hostingservers", result.ProviderRegistration.Properties.Extensions[0].Name); + Assert.Equal("SqlAdminExtension", result.ProviderRegistration.Properties.Extensions[0].Name); Assert.Equal("2014-04-01-preview", result.ProviderRegistration.Properties.ResourceTypes[0].Endpoints[0].ApiVersions[0]); Assert.Equal("https://azstack:30010", result.ProviderRegistration.Properties.ResourceTypes[0].Endpoints[0].EndpointUri); Assert.Equal(new TimeSpan(0, 0, 0), result.ProviderRegistration.Properties.ResourceTypes[0].Endpoints[0].Timeout); @@ -200,7 +200,7 @@ public void CreateOrUpdateResourceProviderManifest() Assert.Equal("Microsoft.Sql.Admin", result.ProviderRegistration.Properties.Namespace); Assert.Equal("local", result.ProviderRegistration.Properties.ProviderLocation); Assert.Equal("hostingservers", result.ProviderRegistration.Properties.ResourceTypes[0].Name); - Assert.Equal("hostingservers", result.ProviderRegistration.Properties.Extensions[0].Name); + Assert.Equal("SqlAdminExtension", result.ProviderRegistration.Properties.Extensions[0].Name); Assert.Equal("2014-04-01-preview", result.ProviderRegistration.Properties.ResourceTypes[0].Endpoints[0].ApiVersions[0]); Assert.Equal("https://azstack:30010", result.ProviderRegistration.Properties.ResourceTypes[0].Endpoints[0].EndpointUri); Assert.Equal(new TimeSpan(0, 0, 0), result.ProviderRegistration.Properties.ResourceTypes[0].Endpoints[0].Timeout); From cbb5f115f85f51fa96629125954151474898a943 Mon Sep 17 00:00:00 2001 From: kirankumarkolli Date: Wed, 2 Nov 2016 15:29:55 -0700 Subject: [PATCH 06/10] Adding a missing bin place for test recordings --- .../HDInsight/HDInsight.Tests/HDInsight.Tests.csproj | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/ResourceManagement/HDInsight/HDInsight.Tests/HDInsight.Tests.csproj b/src/ResourceManagement/HDInsight/HDInsight.Tests/HDInsight.Tests.csproj index 55237a8821ddd..fab9e05a4c203 100644 --- a/src/ResourceManagement/HDInsight/HDInsight.Tests/HDInsight.Tests.csproj +++ b/src/ResourceManagement/HDInsight/HDInsight.Tests/HDInsight.Tests.csproj @@ -44,7 +44,9 @@ PreserveNewest - + + PreserveNewest + PreserveNewest From 5ec0ddecad8b87e1e5b9a27efd424e3048200e38 Mon Sep 17 00:00:00 2001 From: kirankumarkolli Date: Wed, 2 Nov 2016 15:45:45 -0700 Subject: [PATCH 07/10] Bumping up the nuget and assembly version --- .../HDInsight/Microsoft.Azure.Management.HDInsight.nuget.proj | 2 +- .../HDInsight/HDInsight/Properties/AssemblyInfo.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 0f5d211d5ca5a..7532e31f514be 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.0 + 1.3.1 $(MSBuildThisFileDirectory) diff --git a/src/ResourceManagement/HDInsight/HDInsight/Properties/AssemblyInfo.cs b/src/ResourceManagement/HDInsight/HDInsight/Properties/AssemblyInfo.cs index 2325a57f46644..7d694f0c32d26 100644 --- a/src/ResourceManagement/HDInsight/HDInsight/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/HDInsight/HDInsight/Properties/AssemblyInfo.cs @@ -33,7 +33,7 @@ // by using the '*' as shown below: [assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.3.0.0")] +[assembly: AssemblyFileVersion("1.3.1.0")] #if CODESIGN [assembly:InternalsVisibleTo("HDInsight.Tests, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9")] From 7a29c39e9912242b8bf062199199a35d90afb777 Mon Sep 17 00:00:00 2001 From: kirankumarkolli Date: Mon, 7 Nov 2016 17:01:44 -0800 Subject: [PATCH 08/10] Refractoring to remove nested if-else for default VM type selection --- ...ClusterOperations.Create.Customizations.cs | 38 ++++++++----------- 1 file changed, 15 insertions(+), 23 deletions(-) diff --git a/src/ResourceManagement/HDInsight/HDInsight/Customizations/ClusterOperations.Create.Customizations.cs b/src/ResourceManagement/HDInsight/HDInsight/Customizations/ClusterOperations.Create.Customizations.cs index 28419579873e0..edd134bca0f87 100644 --- a/src/ResourceManagement/HDInsight/HDInsight/Customizations/ClusterOperations.Create.Customizations.cs +++ b/src/ResourceManagement/HDInsight/HDInsight/Customizations/ClusterOperations.Create.Customizations.cs @@ -517,6 +517,12 @@ private static IEnumerable GetRoleCollection(ClusterCreateParameters clust return roles; } + private static readonly Dictionary HeadNodeDefaultSizes = new Dictionary(StringComparer.OrdinalIgnoreCase) { + {"hadoop", "Standard_D3" }, + {"spark", "Standard_D12"}, + {"InteractiveHive", "Standard_D13_v2"}, + }; + private static string GetHeadNodeSize(ClusterCreateParameters clusterCreateParameters) { string headNodeSize; @@ -526,26 +532,20 @@ private static string GetHeadNodeSize(ClusterCreateParameters clusterCreateParam } else { - if (clusterCreateParameters.ClusterType.Equals("Hadoop", StringComparison.OrdinalIgnoreCase)) - { - headNodeSize = "Standard_D3"; - } - else if (clusterCreateParameters.ClusterType.Equals("Spark", StringComparison.OrdinalIgnoreCase)) - { - headNodeSize = "Standard_D12"; - } - else if (clusterCreateParameters.ClusterType.Equals("InteractiveHive", StringComparison.OrdinalIgnoreCase)) - { - headNodeSize = "Standard_D13_v2"; - } - else + if (! HeadNodeDefaultSizes.TryGetValue(clusterCreateParameters.ClusterType, out headNodeSize)) { headNodeSize = "Large"; } } + return headNodeSize; } + private static readonly Dictionary WorkerNodeDefaultSizes = new Dictionary(StringComparer.OrdinalIgnoreCase) { + {"spark", "Standard_D12"}, + {"InteractiveHive", "Standard_D13_v2"}, + }; + private static string GetWorkerNodeSize(ClusterCreateParameters clusterCreateParameters) { string workerNodeSize; @@ -555,20 +555,12 @@ private static string GetWorkerNodeSize(ClusterCreateParameters clusterCreatePar } else { - if (clusterCreateParameters.ClusterType.Equals("Spark", StringComparison.OrdinalIgnoreCase)) - { - workerNodeSize = "Standard_D12"; - } - else if (clusterCreateParameters.ClusterType.Equals("InteractiveHive", StringComparison.OrdinalIgnoreCase)) - { - workerNodeSize = "Standard_D13_v2"; - - } - else + if (!WorkerNodeDefaultSizes.TryGetValue(clusterCreateParameters.ClusterType, out workerNodeSize)) { workerNodeSize = "Standard_D3"; } } + return workerNodeSize; } } From 81ff0c8eba9a9420ec05395b9f50a2c79e51da5e Mon Sep 17 00:00:00 2001 From: kirankumarkolli Date: Mon, 7 Nov 2016 18:37:18 -0800 Subject: [PATCH 09/10] Unit tests for default VM types --- .../HDInsight.Tests/HDInsight.Tests.csproj | 1 + .../ClusterCreateDefaultVMTypeTests.cs | 34 +++++++++++++++++++ ...ClusterOperations.Create.Customizations.cs | 4 +-- 3 files changed, 37 insertions(+), 2 deletions(-) create mode 100644 src/ResourceManagement/HDInsight/HDInsight.Tests/UnitTests/ClusterCreateDefaultVMTypeTests.cs diff --git a/src/ResourceManagement/HDInsight/HDInsight.Tests/HDInsight.Tests.csproj b/src/ResourceManagement/HDInsight/HDInsight.Tests/HDInsight.Tests.csproj index fab9e05a4c203..fe61d6cd5ddf8 100644 --- a/src/ResourceManagement/HDInsight/HDInsight.Tests/HDInsight.Tests.csproj +++ b/src/ResourceManagement/HDInsight/HDInsight.Tests/HDInsight.Tests.csproj @@ -22,6 +22,7 @@ + diff --git a/src/ResourceManagement/HDInsight/HDInsight.Tests/UnitTests/ClusterCreateDefaultVMTypeTests.cs b/src/ResourceManagement/HDInsight/HDInsight.Tests/UnitTests/ClusterCreateDefaultVMTypeTests.cs new file mode 100644 index 0000000000000..520f96a59b7c0 --- /dev/null +++ b/src/ResourceManagement/HDInsight/HDInsight.Tests/UnitTests/ClusterCreateDefaultVMTypeTests.cs @@ -0,0 +1,34 @@ +using Microsoft.Azure.Management.HDInsight; +using Microsoft.Azure.Management.HDInsight.Models; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Xunit; + +namespace HDInsight.Tests.UnitTests +{ + public class ClusterCreateDefaultVmTypeTests + { + [Fact] + public void TestDefaultVmTypes() + { + AssertDefaultVmTypes("hadoop", "Standard_D3", "Standard_D3"); + AssertDefaultVmTypes("spark", "Standard_D12", "Standard_D12"); + AssertDefaultVmTypes("InteractiveHive", "Standard_D13_v2", "Standard_D13_v2"); + AssertDefaultVmTypes("hbase", "Large", "Standard_D3"); + } + + public void AssertDefaultVmTypes(string clusterType, string expectedheadNodeVmType, string expectedWorkerNodeVmType) + { + var createParams = new ClusterCreateParameters() + { + ClusterType = clusterType, + }; + + Assert.Equal(expectedheadNodeVmType, ClusterOperations.GetHeadNodeSize(createParams)); + Assert.Equal(expectedWorkerNodeVmType, ClusterOperations.GetWorkerNodeSize(createParams)); + } + } +} diff --git a/src/ResourceManagement/HDInsight/HDInsight/Customizations/ClusterOperations.Create.Customizations.cs b/src/ResourceManagement/HDInsight/HDInsight/Customizations/ClusterOperations.Create.Customizations.cs index edd134bca0f87..51ed46cc31ebb 100644 --- a/src/ResourceManagement/HDInsight/HDInsight/Customizations/ClusterOperations.Create.Customizations.cs +++ b/src/ResourceManagement/HDInsight/HDInsight/Customizations/ClusterOperations.Create.Customizations.cs @@ -523,7 +523,7 @@ private static IEnumerable GetRoleCollection(ClusterCreateParameters clust {"InteractiveHive", "Standard_D13_v2"}, }; - private static string GetHeadNodeSize(ClusterCreateParameters clusterCreateParameters) + internal static string GetHeadNodeSize(ClusterCreateParameters clusterCreateParameters) { string headNodeSize; if (clusterCreateParameters.HeadNodeSize != null) @@ -546,7 +546,7 @@ private static string GetHeadNodeSize(ClusterCreateParameters clusterCreateParam {"InteractiveHive", "Standard_D13_v2"}, }; - private static string GetWorkerNodeSize(ClusterCreateParameters clusterCreateParameters) + internal static string GetWorkerNodeSize(ClusterCreateParameters clusterCreateParameters) { string workerNodeSize; if (clusterCreateParameters.WorkerNodeSize != null) From 7480637442e4bf34a8067d0e3a6a53001a308ed2 Mon Sep 17 00:00:00 2001 From: kirankumarkolli Date: Mon, 7 Nov 2016 18:40:59 -0800 Subject: [PATCH 10/10] Undoing the create cluster tests for interactivehive. --- .../HDInsight.Tests/HDInsight.Tests.csproj | 3 - .../Helpers/GetClusterSpecHelpers.cs | 10 - .../ScenarioTests/CreateClusterTests.cs | 30 - ...TestCreateLinuxInteractiveHiveCluster.json | 2312 ----------------- 4 files changed, 2355 deletions(-) delete mode 100644 src/ResourceManagement/HDInsight/HDInsight.Tests/SessionRecords/HDInsight.Tests.CreateClusterTests/TestCreateLinuxInteractiveHiveCluster.json diff --git a/src/ResourceManagement/HDInsight/HDInsight.Tests/HDInsight.Tests.csproj b/src/ResourceManagement/HDInsight/HDInsight.Tests/HDInsight.Tests.csproj index fe61d6cd5ddf8..2813797d3193e 100644 --- a/src/ResourceManagement/HDInsight/HDInsight.Tests/HDInsight.Tests.csproj +++ b/src/ResourceManagement/HDInsight/HDInsight.Tests/HDInsight.Tests.csproj @@ -45,9 +45,6 @@ PreserveNewest - - PreserveNewest - PreserveNewest diff --git a/src/ResourceManagement/HDInsight/HDInsight.Tests/Helpers/GetClusterSpecHelpers.cs b/src/ResourceManagement/HDInsight/HDInsight.Tests/Helpers/GetClusterSpecHelpers.cs index d84240a048dd5..ff47e235f730f 100644 --- a/src/ResourceManagement/HDInsight/HDInsight.Tests/Helpers/GetClusterSpecHelpers.cs +++ b/src/ResourceManagement/HDInsight/HDInsight.Tests/Helpers/GetClusterSpecHelpers.cs @@ -318,16 +318,6 @@ public static ClusterCreateParameters GetCustomCreateParametersSparkIaas() return clusterparams; } - public static ClusterCreateParameters GetCustomCreateParametersInteractiveHiveIaas() - { - var clusterparams = GetCustomCreateParametersIaas(); - clusterparams.Version = "3.5"; - clusterparams.ClusterType = "InteractiveHive"; - clusterparams.WorkerNodeSize = null; - clusterparams.HeadNodeSize = null; - return clusterparams; - } - public static ClusterCreateParametersExtended AddConfigurations(ClusterCreateParametersExtended cluster, string configurationKey, Dictionary configs) { string configurations = cluster.Properties.ClusterDefinition.Configurations; diff --git a/src/ResourceManagement/HDInsight/HDInsight.Tests/ScenarioTests/CreateClusterTests.cs b/src/ResourceManagement/HDInsight/HDInsight.Tests/ScenarioTests/CreateClusterTests.cs index 2db1e825b6a2c..7504f39b312e2 100644 --- a/src/ResourceManagement/HDInsight/HDInsight.Tests/ScenarioTests/CreateClusterTests.cs +++ b/src/ResourceManagement/HDInsight/HDInsight.Tests/ScenarioTests/CreateClusterTests.cs @@ -423,35 +423,5 @@ public void TestCreateLinuxSparkClusterWithComponentVersion() Assert.Equal(result.State, AsyncOperationState.Succeeded); } } - - [Fact] - public void TestCreateLinuxInteractiveHiveCluster() - { - var handler = new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }; - - using (var context = UndoContext.Current) - { - context.Start(); - - var client = HDInsightManagementTestUtilities.GetHDInsightManagementClient(handler); - var resourceManagementClient = HDInsightManagementTestUtilities.GetResourceManagementClient(handler); - var resourceGroup = HDInsightManagementTestUtilities.CreateResourceGroup(resourceManagementClient); - - var cluster = GetClusterSpecHelpers.GetCustomCreateParametersInteractiveHiveIaas(); - cluster.ClusterTier = Tier.Standard; - const string dnsname = "hdisdk-InteractiveHiveLinuxClusterTest2"; - - var createresponse = client.Clusters.Create(resourceGroup, dnsname, cluster); - Assert.Equal(dnsname, createresponse.Cluster.Name); - - client.Clusters.Get(resourceGroup, dnsname); - Assert.NotNull(createresponse.Cluster.Properties.ClusterDefinition.ComponentVersion); - - HDInsightManagementTestUtilities.WaitForClusterToMoveToRunning(resourceGroup, dnsname, client); - var result = client.Clusters.Delete(resourceGroup, dnsname); - Assert.Equal(result.StatusCode, HttpStatusCode.OK); - Assert.Equal(result.State, AsyncOperationState.Succeeded); - } - } } } \ No newline at end of file diff --git a/src/ResourceManagement/HDInsight/HDInsight.Tests/SessionRecords/HDInsight.Tests.CreateClusterTests/TestCreateLinuxInteractiveHiveCluster.json b/src/ResourceManagement/HDInsight/HDInsight.Tests/SessionRecords/HDInsight.Tests.CreateClusterTests/TestCreateLinuxInteractiveHiveCluster.json deleted file mode 100644 index b527e3afadef6..0000000000000 --- a/src/ResourceManagement/HDInsight/HDInsight.Tests/SessionRecords/HDInsight.Tests.CreateClusterTests/TestCreateLinuxInteractiveHiveCluster.json +++ /dev/null @@ -1,2312 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourcegroups/hdi3355?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Jlc291cmNlZ3JvdXBzL2hkaTMzNTU/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/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355\",\r\n \"name\": \"hdi3355\",\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": [ - "1198" - ], - "x-ms-request-id": [ - "4e7a83e2-71ef-4874-87f8-eb90d1f80e1d" - ], - "x-ms-correlation-request-id": [ - "4e7a83e2-71ef-4874-87f8-eb90d1f80e1d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161102T003846Z:4e7a83e2-71ef-4874-87f8-eb90d1f80e1d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 02 Nov 2016 00:38:46 GMT" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2?api-version=2015-03-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Jlc291cmNlR3JvdXBzL2hkaTMzNTUvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLUludGVyYWN0aXZlSGl2ZUxpbnV4Q2x1c3RlclRlc3QyP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5\",\r\n \"osType\": \"Linux\",\r\n \"tier\": \"Standard\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"InteractiveHive\",\r\n \"componentVersion\": {},\r\n \"configurations\": {\r\n \"core-site\": {\r\n \"fs.defaultFS\": \"wasb://sdkcontainer@kkhdistore.blob.core.windows.net\",\r\n \"fs.azure.account.key.kkhdistore.blob.core.windows.net\": \"UCH4ouZCIyIM7nW4ySMQuhF6/i+8CiHsya90TD5klFCanXae8c9gLOMugByfmHAJwg1zlREbKMq7WEmvfCE/uw==\"\r\n },\r\n \"gateway\": {\r\n \"restAuthCredential.isEnabled\": \"true\",\r\n \"restAuthCredential.username\": \"admin\",\r\n \"restAuthCredential.password\": \"KKProd~123\"\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_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"KKProd~123\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"KKProd~123\"\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\": \"sshuser\",\r\n \"password\": \"KKProd~123\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "1862" - ], - "User-Agent": [ - "ARM", - "SDK", - "v1.3.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"name\": \"hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"0684de70-3cd0-4f89-a88c-559a0acbb64b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.5.1000.0.8750792.json\",\r\n \"kind\": \"InteractiveHive\",\r\n \"componentVersion\": {}\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_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\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\": \"sshuser\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2016-11-02T00:39:19.673\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 46\r\n },\r\n \"tier\": \"standard\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1198" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-clusteruri": [ - "https://management.azure.com/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2?api-version=2015-03-01-preview" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2/azureasyncoperations/create?api-version=2015-03-01-preview" - ], - "x-ms-request-id": [ - "15f39dfd-415f-4446-af0e-241e1b0ca4d2" - ], - "x-ms-hdi-served-by": [ - "" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" - ], - "x-ms-correlation-request-id": [ - "aebdb037-cb57-4ca9-b713-1e670fe6c6ed" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161102T003918Z:aebdb037-cb57-4ca9-b713-1e670fe6c6ed" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 02 Nov 2016 00:39:17 GMT" - ], - "ETag": [ - "\"0684de70-3cd0-4f89-a88c-559a0acbb64b\"" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2?api-version=2015-03-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Jlc291cmNlR3JvdXBzL2hkaTMzNTUvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLUludGVyYWN0aXZlSGl2ZUxpbnV4Q2x1c3RlclRlc3QyP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "ARM", - "SDK", - "v1.3.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"name\": \"hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"0684de70-3cd0-4f89-a88c-559a0acbb64b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.5.1000.0.8750792.json\",\r\n \"kind\": \"InteractiveHive\",\r\n \"componentVersion\": {}\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_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\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\": \"sshuser\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2016-11-02T00:39:19.673\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 46\r\n },\r\n \"tier\": \"standard\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1198" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "f1aa3aa9-66c6-4ad7-acd8-336b392b8b18" - ], - "x-ms-hdi-served-by": [ - "" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14930" - ], - "x-ms-correlation-request-id": [ - "576e2db0-9511-4bf4-a1ef-499a42b0fdb6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161102T003919Z:576e2db0-9511-4bf4-a1ef-499a42b0fdb6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 02 Nov 2016 00:39:18 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2?api-version=2015-03-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Jlc291cmNlR3JvdXBzL2hkaTMzNTUvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLUludGVyYWN0aXZlSGl2ZUxpbnV4Q2x1c3RlclRlc3QyP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "ARM", - "SDK", - "v1.3.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"name\": \"hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"0684de70-3cd0-4f89-a88c-559a0acbb64b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.5.1000.0.8750792.json\",\r\n \"kind\": \"InteractiveHive\",\r\n \"componentVersion\": {}\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_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\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\": \"sshuser\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"ClusterStorageConfiguration\",\r\n \"createdDate\": \"2016-11-02T00:39:19.673\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 46\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1478" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "7cb0923a-cc75-420c-8dea-f11323d07ca3" - ], - "x-ms-hdi-served-by": [ - "" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14933" - ], - "x-ms-correlation-request-id": [ - "0676b821-b396-47c4-9b6c-084020143890" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161102T004020Z:0676b821-b396-47c4-9b6c-084020143890" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 02 Nov 2016 00:40:20 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2?api-version=2015-03-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Jlc291cmNlR3JvdXBzL2hkaTMzNTUvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLUludGVyYWN0aXZlSGl2ZUxpbnV4Q2x1c3RlclRlc3QyP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "ARM", - "SDK", - "v1.3.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"name\": \"hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"0684de70-3cd0-4f89-a88c-559a0acbb64b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.5.1000.0.8750792.json\",\r\n \"kind\": \"InteractiveHive\",\r\n \"componentVersion\": {}\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_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\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\": \"sshuser\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"AzureVMConfiguration\",\r\n \"createdDate\": \"2016-11-02T00:39:19.673\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 46\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1471" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "03a559e5-6e32-4c4f-820f-158816fd6a4b" - ], - "x-ms-hdi-served-by": [ - "" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14932" - ], - "x-ms-correlation-request-id": [ - "08c6d833-102e-46c5-8341-b9ae124a4cdf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161102T004121Z:08c6d833-102e-46c5-8341-b9ae124a4cdf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 02 Nov 2016 00:41:20 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2?api-version=2015-03-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Jlc291cmNlR3JvdXBzL2hkaTMzNTUvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLUludGVyYWN0aXZlSGl2ZUxpbnV4Q2x1c3RlclRlc3QyP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "ARM", - "SDK", - "v1.3.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"name\": \"hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"0684de70-3cd0-4f89-a88c-559a0acbb64b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.5.1000.0.8750792.json\",\r\n \"kind\": \"InteractiveHive\",\r\n \"componentVersion\": {}\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_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\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\": \"sshuser\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"AzureVMConfiguration\",\r\n \"createdDate\": \"2016-11-02T00:39:19.673\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 46\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1471" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "87868b81-d815-4c26-9ecb-b219456a16fb" - ], - "x-ms-hdi-served-by": [ - "" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14930" - ], - "x-ms-correlation-request-id": [ - "a665aedf-6a15-4cb9-b6e4-3499f9e8cac0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161102T004222Z:a665aedf-6a15-4cb9-b6e4-3499f9e8cac0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 02 Nov 2016 00:42:21 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2?api-version=2015-03-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Jlc291cmNlR3JvdXBzL2hkaTMzNTUvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLUludGVyYWN0aXZlSGl2ZUxpbnV4Q2x1c3RlclRlc3QyP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "ARM", - "SDK", - "v1.3.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"name\": \"hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"0684de70-3cd0-4f89-a88c-559a0acbb64b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.5.1000.0.8750792.json\",\r\n \"kind\": \"InteractiveHive\",\r\n \"componentVersion\": {}\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_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\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\": \"sshuser\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"AzureVMConfiguration\",\r\n \"createdDate\": \"2016-11-02T00:39:19.673\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 46\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1471" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "94a9c3af-f411-4926-a11d-d0c5f0449fce" - ], - "x-ms-hdi-served-by": [ - "" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14927" - ], - "x-ms-correlation-request-id": [ - "498649ce-031f-4563-a213-02bfdaf84582" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161102T004322Z:498649ce-031f-4563-a213-02bfdaf84582" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 02 Nov 2016 00:43:22 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2?api-version=2015-03-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Jlc291cmNlR3JvdXBzL2hkaTMzNTUvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLUludGVyYWN0aXZlSGl2ZUxpbnV4Q2x1c3RlclRlc3QyP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "ARM", - "SDK", - "v1.3.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"name\": \"hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"0684de70-3cd0-4f89-a88c-559a0acbb64b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.5.1000.0.8750792.json\",\r\n \"kind\": \"InteractiveHive\",\r\n \"componentVersion\": {}\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_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\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\": \"sshuser\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"AzureVMConfiguration\",\r\n \"createdDate\": \"2016-11-02T00:39:19.673\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 46\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1471" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "28fd0b1a-7231-43e7-9690-b4cd1ac50f7d" - ], - "x-ms-hdi-served-by": [ - "" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14926" - ], - "x-ms-correlation-request-id": [ - "c388f770-1860-4c72-9034-12cf46e94c69" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161102T004424Z:c388f770-1860-4c72-9034-12cf46e94c69" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 02 Nov 2016 00:44:23 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2?api-version=2015-03-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Jlc291cmNlR3JvdXBzL2hkaTMzNTUvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLUludGVyYWN0aXZlSGl2ZUxpbnV4Q2x1c3RlclRlc3QyP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "ARM", - "SDK", - "v1.3.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"name\": \"hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"0684de70-3cd0-4f89-a88c-559a0acbb64b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.5.1000.0.8750792.json\",\r\n \"kind\": \"InteractiveHive\",\r\n \"componentVersion\": {}\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_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\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\": \"sshuser\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"AzureVMConfiguration\",\r\n \"createdDate\": \"2016-11-02T00:39:19.673\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 46\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1471" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "66887258-8676-4a2a-8eb7-ec231bbd1743" - ], - "x-ms-hdi-served-by": [ - "" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14930" - ], - "x-ms-correlation-request-id": [ - "fa0008ab-dfaf-47fa-812e-c4a53af3c90a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161102T004524Z:fa0008ab-dfaf-47fa-812e-c4a53af3c90a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 02 Nov 2016 00:45:24 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2?api-version=2015-03-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Jlc291cmNlR3JvdXBzL2hkaTMzNTUvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLUludGVyYWN0aXZlSGl2ZUxpbnV4Q2x1c3RlclRlc3QyP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "ARM", - "SDK", - "v1.3.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"name\": \"hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"0684de70-3cd0-4f89-a88c-559a0acbb64b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.5.1000.0.8750792.json\",\r\n \"kind\": \"InteractiveHive\",\r\n \"componentVersion\": {}\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_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\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\": \"sshuser\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"AzureVMConfiguration\",\r\n \"createdDate\": \"2016-11-02T00:39:19.673\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 46\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1471" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "3f932e67-9c32-4eec-a5ab-411900d7d6da" - ], - "x-ms-hdi-served-by": [ - "" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14929" - ], - "x-ms-correlation-request-id": [ - "d826b30a-9536-48f8-bde3-b99d2dfee5be" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161102T004625Z:d826b30a-9536-48f8-bde3-b99d2dfee5be" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 02 Nov 2016 00:46:24 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2?api-version=2015-03-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Jlc291cmNlR3JvdXBzL2hkaTMzNTUvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLUludGVyYWN0aXZlSGl2ZUxpbnV4Q2x1c3RlclRlc3QyP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "ARM", - "SDK", - "v1.3.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"name\": \"hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"0684de70-3cd0-4f89-a88c-559a0acbb64b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.5.1000.0.8750792.json\",\r\n \"kind\": \"InteractiveHive\",\r\n \"componentVersion\": {}\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_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\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\": \"sshuser\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"AzureVMConfiguration\",\r\n \"createdDate\": \"2016-11-02T00:39:19.673\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 46\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1471" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "6184b01b-4b2c-481e-80b5-288d56a03799" - ], - "x-ms-hdi-served-by": [ - "" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14925" - ], - "x-ms-correlation-request-id": [ - "f52e1445-bebc-4ab5-9cfe-8b17dbcb992f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161102T004726Z:f52e1445-bebc-4ab5-9cfe-8b17dbcb992f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 02 Nov 2016 00:47:25 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2?api-version=2015-03-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Jlc291cmNlR3JvdXBzL2hkaTMzNTUvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLUludGVyYWN0aXZlSGl2ZUxpbnV4Q2x1c3RlclRlc3QyP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "ARM", - "SDK", - "v1.3.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"name\": \"hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"0684de70-3cd0-4f89-a88c-559a0acbb64b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.5.1000.0.8750792.json\",\r\n \"kind\": \"InteractiveHive\",\r\n \"componentVersion\": {}\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_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\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\": \"sshuser\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"AzureVMConfiguration\",\r\n \"createdDate\": \"2016-11-02T00:39:19.673\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 46\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1471" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "44592805-029f-43cb-be11-8707e3d65569" - ], - "x-ms-hdi-served-by": [ - "" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14923" - ], - "x-ms-correlation-request-id": [ - "a6aadc8c-f5c0-403c-811f-c0a8bc8fdd6a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161102T004827Z:a6aadc8c-f5c0-403c-811f-c0a8bc8fdd6a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 02 Nov 2016 00:48:27 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2?api-version=2015-03-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Jlc291cmNlR3JvdXBzL2hkaTMzNTUvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLUludGVyYWN0aXZlSGl2ZUxpbnV4Q2x1c3RlclRlc3QyP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "ARM", - "SDK", - "v1.3.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"name\": \"hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"0684de70-3cd0-4f89-a88c-559a0acbb64b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.5.1000.0.8750792.json\",\r\n \"kind\": \"InteractiveHive\",\r\n \"componentVersion\": {}\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_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\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\": \"sshuser\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"AzureVMConfiguration\",\r\n \"createdDate\": \"2016-11-02T00:39:19.673\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 46\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1471" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c5f89b73-340a-4aee-a98a-625c344f1274" - ], - "x-ms-hdi-served-by": [ - "" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14919" - ], - "x-ms-correlation-request-id": [ - "0c880442-8cb8-4d55-90ab-a5ebedec004f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161102T004928Z:0c880442-8cb8-4d55-90ab-a5ebedec004f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 02 Nov 2016 00:49:27 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2?api-version=2015-03-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Jlc291cmNlR3JvdXBzL2hkaTMzNTUvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLUludGVyYWN0aXZlSGl2ZUxpbnV4Q2x1c3RlclRlc3QyP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "ARM", - "SDK", - "v1.3.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"name\": \"hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"0684de70-3cd0-4f89-a88c-559a0acbb64b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.5.1000.0.8750792.json\",\r\n \"kind\": \"InteractiveHive\",\r\n \"componentVersion\": {}\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_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\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\": \"sshuser\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"HdInsightConfiguration\",\r\n \"createdDate\": \"2016-11-02T00:39:19.673\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 46\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1473" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "597bcc6c-7503-4cb0-922c-659881bd6050" - ], - "x-ms-hdi-served-by": [ - "" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14923" - ], - "x-ms-correlation-request-id": [ - "2227d4a4-7826-42ed-8df3-993d02ff6f55" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161102T005029Z:2227d4a4-7826-42ed-8df3-993d02ff6f55" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 02 Nov 2016 00:50:29 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2?api-version=2015-03-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Jlc291cmNlR3JvdXBzL2hkaTMzNTUvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLUludGVyYWN0aXZlSGl2ZUxpbnV4Q2x1c3RlclRlc3QyP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "ARM", - "SDK", - "v1.3.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"name\": \"hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"0684de70-3cd0-4f89-a88c-559a0acbb64b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.5.1000.0.8750792.json\",\r\n \"kind\": \"InteractiveHive\",\r\n \"componentVersion\": {}\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_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\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\": \"sshuser\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"HdInsightConfiguration\",\r\n \"createdDate\": \"2016-11-02T00:39:19.673\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 46\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1473" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "44c69a30-6b1e-4c34-9312-6d49a63f16b7" - ], - "x-ms-hdi-served-by": [ - "" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14920" - ], - "x-ms-correlation-request-id": [ - "b462d384-45c9-4908-8ddb-232635b70c89" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161102T005129Z:b462d384-45c9-4908-8ddb-232635b70c89" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 02 Nov 2016 00:51:29 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2?api-version=2015-03-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Jlc291cmNlR3JvdXBzL2hkaTMzNTUvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLUludGVyYWN0aXZlSGl2ZUxpbnV4Q2x1c3RlclRlc3QyP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "ARM", - "SDK", - "v1.3.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"name\": \"hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"0684de70-3cd0-4f89-a88c-559a0acbb64b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.5.1000.0.8750792.json\",\r\n \"kind\": \"InteractiveHive\",\r\n \"componentVersion\": {}\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_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\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\": \"sshuser\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"HdInsightConfiguration\",\r\n \"createdDate\": \"2016-11-02T00:39:19.673\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 46\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1473" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "1251bd2e-c969-4934-9f49-b973f19d1fb3" - ], - "x-ms-hdi-served-by": [ - "" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14917" - ], - "x-ms-correlation-request-id": [ - "185ccf11-3f52-463c-8c86-0e32e3fc8525" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161102T005230Z:185ccf11-3f52-463c-8c86-0e32e3fc8525" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 02 Nov 2016 00:52:29 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2?api-version=2015-03-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Jlc291cmNlR3JvdXBzL2hkaTMzNTUvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLUludGVyYWN0aXZlSGl2ZUxpbnV4Q2x1c3RlclRlc3QyP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "ARM", - "SDK", - "v1.3.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"name\": \"hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"0684de70-3cd0-4f89-a88c-559a0acbb64b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.5.1000.0.8750792.json\",\r\n \"kind\": \"InteractiveHive\",\r\n \"componentVersion\": {}\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_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\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\": \"sshuser\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"HdInsightConfiguration\",\r\n \"createdDate\": \"2016-11-02T00:39:19.673\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 46\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1473" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "389df568-2541-468e-bf40-ec935a87d1d2" - ], - "x-ms-hdi-served-by": [ - "" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14914" - ], - "x-ms-correlation-request-id": [ - "aa36bfaa-3f37-4e69-aff5-69cd35b49a9b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161102T005331Z:aa36bfaa-3f37-4e69-aff5-69cd35b49a9b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 02 Nov 2016 00:53:30 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2?api-version=2015-03-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Jlc291cmNlR3JvdXBzL2hkaTMzNTUvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLUludGVyYWN0aXZlSGl2ZUxpbnV4Q2x1c3RlclRlc3QyP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "ARM", - "SDK", - "v1.3.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"name\": \"hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"0684de70-3cd0-4f89-a88c-559a0acbb64b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.5.1000.0.8750792.json\",\r\n \"kind\": \"InteractiveHive\",\r\n \"componentVersion\": {}\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_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\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\": \"sshuser\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"HdInsightConfiguration\",\r\n \"createdDate\": \"2016-11-02T00:39:19.673\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 46\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1473" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "7fbde32d-57b3-4bc8-8884-2c39bb40759e" - ], - "x-ms-hdi-served-by": [ - "" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14912" - ], - "x-ms-correlation-request-id": [ - "8834f47c-5a4d-4f1c-bb85-4639f632533d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161102T005432Z:8834f47c-5a4d-4f1c-bb85-4639f632533d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 02 Nov 2016 00:54:31 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2?api-version=2015-03-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Jlc291cmNlR3JvdXBzL2hkaTMzNTUvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLUludGVyYWN0aXZlSGl2ZUxpbnV4Q2x1c3RlclRlc3QyP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "ARM", - "SDK", - "v1.3.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"name\": \"hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"0684de70-3cd0-4f89-a88c-559a0acbb64b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.5.1000.0.8750792.json\",\r\n \"kind\": \"InteractiveHive\",\r\n \"componentVersion\": {}\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_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\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\": \"sshuser\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"HdInsightConfiguration\",\r\n \"createdDate\": \"2016-11-02T00:39:19.673\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 46\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1473" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "5de3299c-39e4-40ab-aebe-a88aa0425436" - ], - "x-ms-hdi-served-by": [ - "" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14920" - ], - "x-ms-correlation-request-id": [ - "1d085794-d893-490f-bcad-4007577ad1f7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161102T005532Z:1d085794-d893-490f-bcad-4007577ad1f7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 02 Nov 2016 00:55:32 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2?api-version=2015-03-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Jlc291cmNlR3JvdXBzL2hkaTMzNTUvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLUludGVyYWN0aXZlSGl2ZUxpbnV4Q2x1c3RlclRlc3QyP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "ARM", - "SDK", - "v1.3.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"name\": \"hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"0684de70-3cd0-4f89-a88c-559a0acbb64b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.5.1000.0.8750792.json\",\r\n \"kind\": \"InteractiveHive\",\r\n \"componentVersion\": {}\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_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\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\": \"sshuser\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"HdInsightConfiguration\",\r\n \"createdDate\": \"2016-11-02T00:39:19.673\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 46\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1473" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "e43faf27-d465-41ac-8a4d-dfd5849620d9" - ], - "x-ms-hdi-served-by": [ - "" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14919" - ], - "x-ms-correlation-request-id": [ - "a115aaa6-790e-4c06-b796-dff95f1144ee" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161102T005633Z:a115aaa6-790e-4c06-b796-dff95f1144ee" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 02 Nov 2016 00:56:33 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2?api-version=2015-03-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Jlc291cmNlR3JvdXBzL2hkaTMzNTUvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLUludGVyYWN0aXZlSGl2ZUxpbnV4Q2x1c3RlclRlc3QyP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "ARM", - "SDK", - "v1.3.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"name\": \"hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"0684de70-3cd0-4f89-a88c-559a0acbb64b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.5.1000.0.8750792.json\",\r\n \"kind\": \"InteractiveHive\",\r\n \"componentVersion\": {}\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_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\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\": \"sshuser\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2016-11-02T00:39:19.673\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 46\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1457" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "36feeeb9-feca-4763-a620-92ed4392b63c" - ], - "x-ms-hdi-served-by": [ - "" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14918" - ], - "x-ms-correlation-request-id": [ - "2cab2fc3-968d-47a5-9790-784b02fb2378" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161102T005734Z:2cab2fc3-968d-47a5-9790-784b02fb2378" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 02 Nov 2016 00:57:34 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2?api-version=2015-03-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Jlc291cmNlR3JvdXBzL2hkaTMzNTUvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLUludGVyYWN0aXZlSGl2ZUxpbnV4Q2x1c3RlclRlc3QyP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "ARM", - "SDK", - "v1.3.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"name\": \"hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"0684de70-3cd0-4f89-a88c-559a0acbb64b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.5.1000.0.8750792.json\",\r\n \"kind\": \"InteractiveHive\",\r\n \"componentVersion\": {}\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_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\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\": \"sshuser\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2016-11-02T00:39:19.673\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 46\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1457" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "da6f1832-42bc-4941-aebe-0b109f26895c" - ], - "x-ms-hdi-served-by": [ - "" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14917" - ], - "x-ms-correlation-request-id": [ - "41039d03-bf5a-4109-8b81-8fa1abffc46a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161102T005740Z:41039d03-bf5a-4109-8b81-8fa1abffc46a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 02 Nov 2016 00:57:40 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2?api-version=2015-03-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Jlc291cmNlR3JvdXBzL2hkaTMzNTUvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLUludGVyYWN0aXZlSGl2ZUxpbnV4Q2x1c3RlclRlc3QyP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "ARM", - "SDK", - "v1.3.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"name\": \"hdisdk-InteractiveHiveLinuxClusterTest2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"0684de70-3cd0-4f89-a88c-559a0acbb64b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.5.1000.0.8750792.json\",\r\n \"kind\": \"InteractiveHive\",\r\n \"componentVersion\": {}\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_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\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\": \"sshuser\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2016-11-02T00:39:19.673\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 46\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-InteractiveHiveLinuxClusterTest2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1457" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "e53f87a8-73d0-4f07-9c12-482da496a02c" - ], - "x-ms-hdi-served-by": [ - "" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14916" - ], - "x-ms-correlation-request-id": [ - "b8ea32fd-185b-436a-b7f0-d10b3b90bc6f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161102T005742Z:b8ea32fd-185b-436a-b7f0-d10b3b90bc6f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 02 Nov 2016 00:57:42 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/hdi3355/providers/Microsoft.HDInsight/clusters/hdisdk-InteractiveHiveLinuxClusterTest2?api-version=2015-03-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Jlc291cmNlR3JvdXBzL2hkaTMzNTUvcHJvdmlkZXJzL01pY3Jvc29mdC5IREluc2lnaHQvY2x1c3RlcnMvaGRpc2RrLUludGVyYWN0aXZlSGl2ZUxpbnV4Q2x1c3RlclRlc3QyP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDEtcHJldmlldw==", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "ARM", - "SDK", - "v1.3.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/providers/Microsoft.HDInsight/locations/West US/azureasyncoperations/8046b0be-f1cd-4de1-8d0d-953447b5099c-0?api-version=2015-03-01-preview" - ], - "x-ms-request-id": [ - "48a2ff9a-d997-4d12-8834-824613659ec7" - ], - "x-ms-hdi-served-by": [ - "" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" - ], - "x-ms-correlation-request-id": [ - "17bcac2e-cb85-401d-9808-46d42a2eda8d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161102T005745Z:17bcac2e-cb85-401d-9808-46d42a2eda8d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 02 Nov 2016 00:57:45 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/providers/Microsoft.HDInsight/locations/West%20US/operationresults/8046b0be-f1cd-4de1-8d0d-953447b5099c-0?api-version=2015-03-01-preview" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/providers/Microsoft.HDInsight/locations/West%20US/azureasyncoperations/8046b0be-f1cd-4de1-8d0d-953447b5099c-0?api-version=2015-03-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9XZXN0JTIwVVMvYXp1cmVhc3luY29wZXJhdGlvbnMvODA0NmIwYmUtZjFjZC00ZGUxLThkMGQtOTUzNDQ3YjUwOTljLTA/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": [ - "41c3f896-f70b-4660-934f-06bb932c7707" - ], - "x-ms-hdi-served-by": [ - "" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14915" - ], - "x-ms-correlation-request-id": [ - "822597bc-e73e-4c16-8f75-d17b8cdeacbe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161102T005746Z:822597bc-e73e-4c16-8f75-d17b8cdeacbe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 02 Nov 2016 00:57:45 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/providers/Microsoft.HDInsight/locations/West%20US/azureasyncoperations/8046b0be-f1cd-4de1-8d0d-953447b5099c-0?api-version=2015-03-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9XZXN0JTIwVVMvYXp1cmVhc3luY29wZXJhdGlvbnMvODA0NmIwYmUtZjFjZC00ZGUxLThkMGQtOTUzNDQ3YjUwOTljLTA/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": [ - "2c2e5a97-062c-4457-9d58-18f79a58521b" - ], - "x-ms-hdi-served-by": [ - "" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14913" - ], - "x-ms-correlation-request-id": [ - "81b95e36-b370-45a3-9298-e4fcd6289086" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161102T005846Z:81b95e36-b370-45a3-9298-e4fcd6289086" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 02 Nov 2016 00:58:45 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/providers/Microsoft.HDInsight/locations/West%20US/azureasyncoperations/8046b0be-f1cd-4de1-8d0d-953447b5099c-0?api-version=2015-03-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9XZXN0JTIwVVMvYXp1cmVhc3luY29wZXJhdGlvbnMvODA0NmIwYmUtZjFjZC00ZGUxLThkMGQtOTUzNDQ3YjUwOTljLTA/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": [ - "bd0542a1-3762-4d68-8039-e39f791ddbef" - ], - "x-ms-hdi-served-by": [ - "" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14912" - ], - "x-ms-correlation-request-id": [ - "097fbeef-2e87-4396-9a8e-546b94ad29ad" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161102T005947Z:097fbeef-2e87-4396-9a8e-546b94ad29ad" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 02 Nov 2016 00:59:46 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/providers/Microsoft.HDInsight/locations/West%20US/azureasyncoperations/8046b0be-f1cd-4de1-8d0d-953447b5099c-0?api-version=2015-03-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9XZXN0JTIwVVMvYXp1cmVhc3luY29wZXJhdGlvbnMvODA0NmIwYmUtZjFjZC00ZGUxLThkMGQtOTUzNDQ3YjUwOTljLTA/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": [ - "8bd6fa7b-f915-40b8-b446-8022141226fd" - ], - "x-ms-hdi-served-by": [ - "" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14920" - ], - "x-ms-correlation-request-id": [ - "225c70a3-c679-4886-b149-1da6c2d3fe15" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161102T010047Z:225c70a3-c679-4886-b149-1da6c2d3fe15" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 02 Nov 2016 01:00:47 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/providers/Microsoft.HDInsight/locations/West%20US/azureasyncoperations/8046b0be-f1cd-4de1-8d0d-953447b5099c-0?api-version=2015-03-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9XZXN0JTIwVVMvYXp1cmVhc3luY29wZXJhdGlvbnMvODA0NmIwYmUtZjFjZC00ZGUxLThkMGQtOTUzNDQ3YjUwOTljLTA/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": [ - "457c9ce1-6c34-4cef-a775-f8f4f8945b1a" - ], - "x-ms-hdi-served-by": [ - "" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14918" - ], - "x-ms-correlation-request-id": [ - "a9e596b9-9a18-4f6b-9005-2eacf00315f2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161102T010148Z:a9e596b9-9a18-4f6b-9005-2eacf00315f2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 02 Nov 2016 01:01:48 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/providers/Microsoft.HDInsight/locations/West%20US/azureasyncoperations/8046b0be-f1cd-4de1-8d0d-953447b5099c-0?api-version=2015-03-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9XZXN0JTIwVVMvYXp1cmVhc3luY29wZXJhdGlvbnMvODA0NmIwYmUtZjFjZC00ZGUxLThkMGQtOTUzNDQ3YjUwOTljLTA/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": [ - "769b0cfb-b196-4b2b-8d07-e6fb0f279a99" - ], - "x-ms-hdi-served-by": [ - "" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14917" - ], - "x-ms-correlation-request-id": [ - "8bc3405d-559e-40cf-a605-7300f42cff43" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161102T010249Z:8bc3405d-559e-40cf-a605-7300f42cff43" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 02 Nov 2016 01:02:48 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/providers/Microsoft.HDInsight/locations/West%20US/azureasyncoperations/8046b0be-f1cd-4de1-8d0d-953447b5099c-0?api-version=2015-03-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9XZXN0JTIwVVMvYXp1cmVhc3luY29wZXJhdGlvbnMvODA0NmIwYmUtZjFjZC00ZGUxLThkMGQtOTUzNDQ3YjUwOTljLTA/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": [ - "2cdfef96-1d9b-4351-95ed-63738f90e5e2" - ], - "x-ms-hdi-served-by": [ - "" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14913" - ], - "x-ms-correlation-request-id": [ - "aae5d71a-bf45-4ac3-9c89-f6fdfdaee106" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161102T010349Z:aae5d71a-bf45-4ac3-9c89-f6fdfdaee106" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 02 Nov 2016 01:03:49 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/providers/Microsoft.HDInsight/locations/West%20US/azureasyncoperations/8046b0be-f1cd-4de1-8d0d-953447b5099c-0?api-version=2015-03-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9XZXN0JTIwVVMvYXp1cmVhc3luY29wZXJhdGlvbnMvODA0NmIwYmUtZjFjZC00ZGUxLThkMGQtOTUzNDQ3YjUwOTljLTA/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": [ - "c2fde0b9-3497-47cb-a001-374817bfdd3c" - ], - "x-ms-hdi-served-by": [ - "" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14912" - ], - "x-ms-correlation-request-id": [ - "c574accf-07a1-4cfa-8ee6-262246194f3c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161102T010450Z:c574accf-07a1-4cfa-8ee6-262246194f3c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 02 Nov 2016 01:04:50 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/providers/Microsoft.HDInsight/locations/West%20US/azureasyncoperations/8046b0be-f1cd-4de1-8d0d-953447b5099c-0?api-version=2015-03-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9XZXN0JTIwVVMvYXp1cmVhc3luY29wZXJhdGlvbnMvODA0NmIwYmUtZjFjZC00ZGUxLThkMGQtOTUzNDQ3YjUwOTljLTA/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": [ - "a701b4cb-cec8-4ef7-9631-7f95902952d2" - ], - "x-ms-hdi-served-by": [ - "" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14911" - ], - "x-ms-correlation-request-id": [ - "72cd9c8d-5315-4fdd-9fd9-dda0cfa55889" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161102T010550Z:72cd9c8d-5315-4fdd-9fd9-dda0cfa55889" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 02 Nov 2016 01:05:50 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/providers/Microsoft.HDInsight/locations/West%20US/azureasyncoperations/8046b0be-f1cd-4de1-8d0d-953447b5099c-0?api-version=2015-03-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9XZXN0JTIwVVMvYXp1cmVhc3luY29wZXJhdGlvbnMvODA0NmIwYmUtZjFjZC00ZGUxLThkMGQtOTUzNDQ3YjUwOTljLTA/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": [ - "47926cf2-7011-4428-919c-c52d4272deb6" - ], - "x-ms-hdi-served-by": [ - "" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14909" - ], - "x-ms-correlation-request-id": [ - "a1394799-b37c-40df-9792-35815c0fd319" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161102T010651Z:a1394799-b37c-40df-9792-35815c0fd319" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 02 Nov 2016 01:06:51 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/providers/Microsoft.HDInsight/locations/West%20US/azureasyncoperations/8046b0be-f1cd-4de1-8d0d-953447b5099c-0?api-version=2015-03-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9XZXN0JTIwVVMvYXp1cmVhc3luY29wZXJhdGlvbnMvODA0NmIwYmUtZjFjZC00ZGUxLThkMGQtOTUzNDQ3YjUwOTljLTA/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": [ - "3d556478-c02f-4b4e-8374-40b83ec714dc" - ], - "x-ms-hdi-served-by": [ - "" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14908" - ], - "x-ms-correlation-request-id": [ - "4835e97c-0e0a-460e-808d-3f829b550a94" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161102T010752Z:4835e97c-0e0a-460e-808d-3f829b550a94" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 02 Nov 2016 01:07:51 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/providers/Microsoft.HDInsight/locations/West%20US/azureasyncoperations/8046b0be-f1cd-4de1-8d0d-953447b5099c-0?api-version=2015-03-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9XZXN0JTIwVVMvYXp1cmVhc3luY29wZXJhdGlvbnMvODA0NmIwYmUtZjFjZC00ZGUxLThkMGQtOTUzNDQ3YjUwOTljLTA/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": [ - "fca63173-c095-4985-8c73-62709d92cb71" - ], - "x-ms-hdi-served-by": [ - "" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14903" - ], - "x-ms-correlation-request-id": [ - "0b0f8d15-66e9-44ec-b49c-484cfb9f3abf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161102T010852Z:0b0f8d15-66e9-44ec-b49c-484cfb9f3abf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 02 Nov 2016 01:08:52 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/providers/Microsoft.HDInsight/locations/West%20US/azureasyncoperations/8046b0be-f1cd-4de1-8d0d-953447b5099c-0?api-version=2015-03-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9XZXN0JTIwVVMvYXp1cmVhc3luY29wZXJhdGlvbnMvODA0NmIwYmUtZjFjZC00ZGUxLThkMGQtOTUzNDQ3YjUwOTljLTA/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": [ - "f41b948d-70cd-4a7f-bc2b-6e3a042e8a08" - ], - "x-ms-hdi-served-by": [ - "" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14902" - ], - "x-ms-correlation-request-id": [ - "65eed05c-a975-4df3-99c8-c3c27fd336a1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161102T010953Z:65eed05c-a975-4df3-99c8-c3c27fd336a1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 02 Nov 2016 01:09:52 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/providers/Microsoft.HDInsight/locations/West%20US/azureasyncoperations/8046b0be-f1cd-4de1-8d0d-953447b5099c-0?api-version=2015-03-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjhmNzhhZTUtOTdiMi00ODdlLWIwOTctMjcwZGUxMGNlNmI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9XZXN0JTIwVVMvYXp1cmVhc3luY29wZXJhdGlvbnMvODA0NmIwYmUtZjFjZC00ZGUxLThkMGQtOTUzNDQ3YjUwOTljLTA/YXBpLXZlcnNpb249MjAxNS0wMy0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "ARM", - "SDK", - "v1.3.0" - ], - "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": [ - "071a77bf-1456-4143-9c3c-c97dfa9fac77" - ], - "x-ms-hdi-served-by": [ - "" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14902" - ], - "x-ms-correlation-request-id": [ - "11a07958-ffc6-4c1c-8a7b-cd979289684c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161102T011054Z:11a07958-ffc6-4c1c-8a7b-cd979289684c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 02 Nov 2016 01:10:53 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - } - ], - "Names": { - "CreateResourceGroup": [ - "hdi3355" - ] - }, - "Variables": { - "SubscriptionId": "28f78ae5-97b2-487e-b097-270de10ce6b8" - } -} \ No newline at end of file